博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA中构造函数的参数传递给类中的实例变量
阅读量:5114 次
发布时间:2019-06-13

本文共 2344 字,大约阅读时间需要 7 分钟。

1 class VolcanoRobot1 2    {  String status; 3       int speed; 4       float temperature; 5       VolcanoRobot1(int speed,float temperature) 6         {   if(temperature > 660) 7            { status = "returning home"; 8              speed = 5; 9              temperature = 780;10             }   11         }12         void showAttributes()13          { System.out.println("Status:" + status);14            System.out.println("Speed: "+ speed);15            System.out.println("Temperature: "+ temperature);16           }17        public static void main(String[] args)18            { VolcanoRobot1 robot = new VolcanoRobot1(20,780);19              robot.showAttributes();20             }    21      }

以上程序运行结果如下:

 

 

1 class VolcanoRobot1 2    {  String status; 3       int speed; 4       float temperature; 5       VolcanoRobot1(int speed,float temperature) 6         {   if(temperature > 660) 7            { status = "returning home"; 8              this.speed = speed; 9              this.temperature = temperature;10             }   11         }12         void showAttributes()13          { System.out.println("Status:" + status);14            System.out.println("Speed: "+ speed);15            System.out.println("Temperature: "+ temperature);16           }17        public static void main(String[] args)18            { VolcanoRobot1 robot = new VolcanoRobot1(20,780);19              robot.showAttributes();20             }    21      }

以上程序的运行结果:

 

 

1 class VolcanoRobot1 2    {  String status; 3       int speed; 4       float temperature; 5       VolcanoRobot1(int speed1,float temperature1) 6         {   if(temperature1 > 660) 7            { status = "returning home"; 8              speed = 5; 9              temperature = 60;10             }   11         }12         void showAttributes()13          { System.out.println("Status:" + status);14            System.out.println("Speed: "+ speed);15            System.out.println("Temperature: "+ temperature);16           }17        public static void main(String[] args)18            { VolcanoRobot1 robot = new VolcanoRobot1(20,780);19              robot.showAttributes();20             }    21      }

以上程序运行结果:

以上程序说明:在创建对象的时候,(用new)构造函数的参数在初始化类的实例变量时:

如果构造函数的参数列表的参数名与实例变量的参数名一样时,需要利用“this”来进行指代实例变量;

如果希望将构造函数的参数的值传递给实例变量需要用赋值语句进行传递。

 

转载于:https://www.cnblogs.com/lubocsu/p/5083487.html

你可能感兴趣的文章
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>
待整理
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>