博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 成员变量初始化
阅读量:6457 次
发布时间:2019-06-23

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

  hot3.png

目标类

public class ConstructTest {        private String notInitStr;        private String initStr;        public ConstructTest(String initStr){        this.initStr = initStr;    }        public String getNotInitStr() {        return notInitStr;    }        public void setNotInitStr(String notInitStr) {        this.notInitStr = notInitStr;    }        public String getInitStr() {        return initStr;    }        public void setInitStr(String initStr) {        this.initStr = initStr;    }}

测试代码:

ConstructTest ct = new ConstructTest("string inited!");System.out.println(ct.getInitStr());System.out.println(ct.getNotInitStr());

测试结果:

string inited!

null

转载于:https://my.oschina.net/milize/blog/658030

你可能感兴趣的文章
Tomcat在Linux上的安装与配置
查看>>
《信息安全系统设计基础》 课程教学
查看>>
Linux平台下使用rman进行oracle数据库迁移
查看>>
全栈工程师学习Linux技术的忠告
查看>>
iOS自定制tabbar与系统的tabbar冲突,造成第一次点击各个item图片更换选中,第二次选中部分item图片不改变...
查看>>
C# Dictionary用法总结
查看>>
SVN服务器使用(二)
查看>>
反射获取内部类以及调用内部类方法
查看>>
C语言 - pthread
查看>>
谈Linq To Sql的优劣--纯个人观点
查看>>
HDU 4996 Revenge of LIS(DP)
查看>>
App里面如何正确显示用户头像
查看>>
DATAGUARD维护:从库宕机后如何恢复到管理恢复模式
查看>>
Android中的PID和UID
查看>>
MAC下上公司内网
查看>>
CentOS7.4安装mysql5.7
查看>>
U-BOOT之一:BootLoader 的概念与功能
查看>>
我的路上
查看>>
Velocity处理多余空白和多余空白行问题
查看>>
内容开发平台(PLATFORM)
查看>>