effective c++ 条款18 make interface easy to use correctly and hard to use incorrectly

举一个容易犯错的例子

class Date
{
private:
int month;
int day;
int year;
public:
Date(int month,int day,int year)
{
this->month = month;
...
}
} //wrong example
Date date(,,);//should be 3,30
Date date(,,);//should be 3,30

使用类型可避免这个问题

class Month
{
...
};
class Day
{
...
};
class Year
{
...
}; class Date
{
private:
int month;
int day;
int year;
public:
Date(Month month,Day day,Year year)
{
this->month = month;
...
}
}

还有就是给客户资源要尽量自动回收。

参见 std::tr1::shared_ptr<>

它能指定删除器。

上一篇:Windows的DOS命令基础


下一篇:3. 上网调查一下目前流行的源程序版本管理软件和项目管理软件都有哪些, 各有什么优缺点? (提示:搜索一下Microsoft TFS、GitHub、Trac、Bugzilla、Rationale,Apple XCode),请用一个实际的源代码管理工具来建立源代码仓库,并签入/签出代码。