会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
hehe
首页
新随笔
联系
管理
2013年3月30日
C++基础 构造函数相关的问题。。。
摘要: 先贴上代码~:#include <iostream>using namespace std;class A{public: A() { i=1; } A(int t) { i=t; A(); } void print() { cout<<i<<endl; }private: int i;};int main(){ A a; a.print(); A b(2); b.print();} 猜猜输出什么? 如果你觉得是1 1的话,恭喜你,继续看下去吧。 ...
阅读全文
posted @ 2013-03-30 22:37 SF-_-
阅读(207)
评论(0)
推荐(0)
编辑