摘要:
题目如下:问下列代码的打印结果为0吗? #include #include using namespace std; struct CLS { int m_i; CLS( int i ) : m_i(i){} CLS() { CLS(0); } }; int main() { CLS obj; cout << obj.... 阅读全文
posted @ 2007-10-20 00:17
中土
阅读(25481)
评论(12)
推荐(8)