小心修复gcc的warning

代码如下:

void accept()
{
   ....
   Connection* client = new Connection();
}

gcc编译时报了 warning,说client变量没有用到,于是我把这一行删了,结果程序错误。后来才发现Connection构造函数是做了事情的,这样直接删不对。正确的改法是直接改为:
new Connection();

看来修复编译器的warning也得留神。

相关文章

分类

2 Comments

ivan said:

有点意思,
只用一个new Connection();就行了吧,省油要得,省内存更要得:-).

DongHao Author Profile Page said:

不是为了省内存,是Connection的构造函数还重要的事情,所以不能拿掉

留言:

关于文章

This page contains a single entry by DongHao published on 12 17, 2009 5:47 PM.

一定要省油 was the previous entry in this blog.

做人不要太微软 is the next entry in this blog.

Find recent content on the main index or look in the 存档 to find all content.