在线笔记
全部博文(596)
发布时间:2013-05-28 11:51:31
如果类没有被创建,则没有对应的成员,也就无法访问下面这种方法需要先创建类,并将类作为参数传递给静态成员函数才能访问。#include <iostream>using namespace std;class person {public: virtual void get_name()=0.........【阅读全文】
发布时间:2013-03-05 22:26:00
1.cpp: In function ‘int main()’:1.cpp:24: error: call of overloaded ‘swap(int&, int&)’ is ambiguous1.cpp:12: note: candidates are: void swap(any&, any&) [with any = int]/usr/include/c++/4.4/bits/move.h:76: note: void std::swap(_Tp&, _Tp.........【阅读全文】