[零基础学JAVA]Java SE面向对象部分.面向对象基础(01)
摘要:
在对象的内存分配上与c++有区别:C++:#include #include class Person{ private: std::string name; int age; public: void setAge(int age){ this->age = age; } void setName(std::string name){ this->name = name; } int getAge(){ return this->age; } std::string getName(){ return this->name; }};int main()... 阅读全文
posted @ 2013-09-19 22:19 凌峰布衣 阅读(235) 评论(0) 推荐(0) 编辑