本帖最后由 枫儿 于 2013-10-9 10:31 编辑
主体思想是这样的:有bilaoshi 这个人的类 然后还有computer这个类 主函数调用人的jiangke功能去调用computer的run方法 可是运行通不过,大家帮忙看看
- class bilaoshi
- {
- private String name;
- private computer compt;
- bilaoshi(String name)
- {
- this.name=name;
- compt=new computer();
- }
- public void jiangke()
- {
- compt.run();
- }
- }
- class computer
- {
- public void run()
- {
- System.out.println("computer run");
- }
- }
- class yichanglx
- {
- public static void main(String[] args)
- {
- bilaoshi b=new bilaoshi("毕老师");
- b.jiangke();
- }
- }
复制代码 |
|