摘要:
这个也是和Java不同的地方,作用是为了防止类的名字冲突 #include <iostream> namespace myspace{ class A{ public: std::string head; private: std::string body; }; } namespace myspa 阅读全文
摘要:
这个是用来include的防止多次重复include #ifndef A_H #define A_H int test(){ } #endif 阅读全文
摘要:
#include <iostream> class A{ public: std::string head; private: std::string body; }; int main() { A a; a.head="888"; a.body="999"; return 0; } 报错结果 ma 阅读全文
摘要:
#include <iostream> class A{ public: std::string head; void hello(std::string str){ std::cout<<str<<head<<std::endl; } }; int main() { A a; std::strin 阅读全文