内容目录: - Draw a pie chart JSP tags provide proper code re-use Page changes 如何成为一个优秀的jsp程序员 国内不谈java 《学不会的JAVA,消不了的忧愁》之五 Servlet的基础结构 一个简单的Servlet 分布式应用开发技术概述 CORBA技术及实例 About UBB with java has a bug Acme包中的以Post方式发送数据的例子 allaire 发布jrun 3.0 rc1版 Apach
默认构造函数(就是没有参数的构造函数)
The Default Constructor
The default constructor is the constructor used to create an object when you don’t provide explicit initialization values. That is, it’s the constructor used for declarations like this:
Stock stock1; // us
之前看一些资料提到浅拷贝的问题,即在复制对象时,只是对对象中的数据成员进行简单的赋值,默认拷贝构造函数执行的也是浅拷贝。如果对象中存在动态成员,如指针,那么仅仅做浅拷贝是不够的,并且容易引发错误,最经典的例子:
#include
#include
using namespace std;
class A{
public:
A(){m_p = new int(10);};
~A(){cout << destruction function <<