●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语言用整数或指针代表句柄,很容易出现异常。
#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语言用整数或指针代表句柄,很容易出现异常。