介绍我自己---练习类的创建和使用

一我要做什么

    介绍我自己并输出到屏幕

二任务步骤
    1定义一个类 属性 姓名, 颜色 ,大小
    功能 使用 ,show自己
    2创建自己并show

 1 class BigPineapple{
 2     String name = "菠萝";
 3     String color = "黄色";
 4     String size = "大";
 5     static void use() {
 6         System.out.print("给海绵宝宝当房子");
 7     }
 8     void show() {
 9         System.out.println("名字:"+size+name);
10         System.out.println("顔色:"+color);
11         System.out.print("作用:");
12         use();
13     }
14 }
15 public class Item {
16 
17     public static void main(String[] args) {
18         // TODO Auto-generated method stub
19         BigPineapple me = new BigPineapple();
20         me.show();
21     }
22 
23 }    
名字:大菠萝
顔色:黄色
作用:给海绵宝宝当房子

*
1错误显示
  The public type BigPineapple must be defined in its own file
错误原因
  定义了两个public类
解决方法
  把不是主函数的类的public去掉
2错误显示
  Cannot make a static reference to the non-static field color
错误原因
  无法在静态方法中引用非静态变量
解决方法
  把static void show改为void show
*/
/*遗留问题
1类中函数的public和static什么时候加*/

转载于:https://www.cnblogs.com/daboluo123/p/7707381.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值