相信自己,只有不想做的,没有做不到的。
发布时间:2014-08-10 09:39:04
目标:掌握利用this返回当前引用的方法源文件:Account.java/** * 返回当前对象的引用 * author guojing; * e-mail guo443193911@126.com */package cn.com.Account;public class Account {int accountId = 100000;public Account creatAccount(){accountId ++;return th.........【阅读全文】
发布时间:2014-08-10 09:35:18
目标:掌握通过this()来调用类中其他重载构造器的方法源文件:Person.java/* * author guojing; * e-mail guo443193911@126.com */package cn.com.Person;public class Person {String name;int age;String sex;public Person(){System.out.println("构造器Person()被调用");.........【阅读全文】
发布时间:2014-08-09 06:16:23
实验1:定义一个“手机”类目标:掌握通过类来创建对象的方法,以及对对象尽心相关的操作。,使用package的用法在工程选择new->java project ->next->finish;源文件 MobileTest.java 默认包名为 defluat packageimport Mobile.Mobile; //把Mobile的这个包加入到这个文件中,相当于C语言中的includep.........【阅读全文】