摘要:
QT开发,需要的一些知识点1.构造函数 拷贝构造函数 赋值函数 析构函数2.继承----派生类得构造函数3.命名空间 引用命名空间:using namespace std;class A{ namespace n1{ void f(){}}。。。。。cout << "hello"<<endl;}或者 无命名空间则 std::cout<< “hello”<<std::endl;g++ file.cpp –Wall 编译C++程序5.C++中类内的成员函数默认为私有。。。私有只能类内函数使用6.申明一个类的对象(实例)来调用函数。。。或者将函数加一个 static申明为静态 阅读全文
posted @ 2012-02-01 07:48 灬啊U 阅读(412) 评论(0) 推荐(0) 编辑