1. 程式人生 > >C++之值語義與物件語義

C++之值語義與物件語義

●iostream擴充套件
#include <ostream>  // 是不是太重量級了?


class Date
{
 public:
  Date(int year, int month, int day)
    : year_(year), month_(month), day_(day)
  {
  }


  void writeTo(std::ostream& os) const
  {
    os << year_ << '-' << month_ << '-' << day_;
  }


private:
int year_, month_, day_;
};


std::ostream& operator<<(std::ostream& os, const Date& date)
{
date.writeTo(os);
return os;
}


int main()
{
Date date(2011, 4, 3);
std::cout << date << std::endl;
// 輸出 2011-4-3
}
●ADT 與 OO(值語義與物件語義)
值語義:complex<> 、pair<>、vector<>、 string,拷貝之後就與原物件無關(int拷貝一份)
物件語義:iostream(fstream代表控制代碼,不能拷貝一份no-copyabe)


我們常見的程式碼類都是物件語義的
1.禁用拷貝和賦值操作
   C++ 裡做面向物件程式設計,寫的 class 通常應該禁用 copy constructor 和 assignment operator
2.物件語意的型別不能直接作為標準容器庫的成員。
3.C語言用整數或指標代表控制代碼,很容易出現異常。