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