首页 > 编程语言 > 详细

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

时间:2014-07-12 00:13:01      阅读:407      评论:0      收藏:0      [点我收藏+]

举一个容易犯错的例子

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

//wrong example
Date date(30,3,1995);//should be 3,30
Date date(2,30,1995);//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<> 

它能指定删除器。

effective c++ 条款18 make interface easy to use correctly and hard to use incorrectly,布布扣,bubuko.com

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

原文:http://www.cnblogs.com/williamwood/p/3832830.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!