2013年9月19日

[零基础学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) 编辑

[零基础学JAVA]Java SE基础部分-03.标识符、数据类型,数组,方法

摘要: 运算符 注意布尔逻辑运行:&&(短路与) 各 &的区别: &&只要判断到一项为0,则后面不判断。&,两项都要判断||(短路或)和 |的区别: 同上。 public class BoolTest{||和 |的区别: public static void main(String args[]){ if((1/1==1)||(1/0==1)){ System.out.println("True"); } if((1/1!=1)&&(1/0==1)){ System.out.println("True"); } }}1.条件判断:if-- 阅读全文

posted @ 2013-09-19 22:13 凌峰布衣 阅读(436) 评论(0) 推荐(0) 编辑

导航