摘要: this是属于一个具体对象的,而不是属于一个类的。 当你创建了一个对象时,this自动的给你带过来了。 this只能在类定义的方法中使用,不能在类定义的外部使用。 class Person { //成员变量 int age; String name; Dog dog; //引用类型 public P 阅读全文
posted @ 2016-06-14 17:43 ansibee 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 主要作用:初始化成员变量(属性) 例如: class Person { int age; String name; /* public Person() { } */ 默认构造方法 } class Person { int age; String name; public Person(int ag 阅读全文
posted @ 2016-06-14 17:20 ansibee 阅读(447) 评论(0) 推荐(0) 编辑
摘要: package com.cqvie.Hello; class Person { private int age; private String name; public void tell() { System.out.println("姓名:"+name+" "+"年龄:"+age); } pub 阅读全文
posted @ 2016-06-14 17:04 ansibee 阅读(316) 评论(0) 推荐(0) 编辑
摘要: package com.cqvie.Hello; public class FirstDemo { public static void main(String[] args) { System.out.println("hello world"); } } hello world的起源要追溯到19 阅读全文
posted @ 2016-06-14 16:35 ansibee 阅读(164) 评论(0) 推荐(0) 编辑