标签:静态方法 dom mic 通过 软件 代码调试 排版 case 变量
教材第二章内容
1.Random类用来生成随机数
2.Matn主要是基本数学函数,静态方法
3.NumberFormat和DecimalFormat格式化信息输出,printf输出含有数值的格式字符串
4.一个包装器代表一种具体的基本数据类型
问题1:静态方法和非静态方法有啥区别?
问题1解决方案:两者的生命周期不同。静态方法的生命周期跟相应的类一样长。而非静态方法的生命周期和类的实例化对象一样长。静态方法可以直接调用,类名调用和对象调用。但是非静态方法只能通过对象调用。
问题2:对转义字符\r与\n的功能区分不清
问题2解决方案:\n表示回车换行;\r表示回车到当前行行首。
图片
图片
问题3解决方案:经过百度,搞清楚区别
(statistics.sh脚本的运行结果截图)
Java variables contain values or references to instances of classes (which contain values and/or additional references).
By definition, a alias provides a means by which an object can be modified (an alias is like a pointer). By definition, a alias provides a means by which an object can be modified (an alias is like a pointer). If both variables are set to null, then the object is not referenced by any variable (via any alias) and it does, indeed, become an "orphan" and it will be garbage collected at some point in the future.
Strings are immutable. That means that once a string object is created it cannot be changed. Therefore the length of a string never changes once it has been created. The shortest length string is "" there are no characters between the quotes, so the length is zero. The replace method allows you to create a new string from an original one, replacing some of the characters. The index of the first location in a String is zero not one. Also, the last byte of every string contains the end-of-string character which is a byte of low-values, or binary zeros.
The dot operator is appended directly after the object reference, followed by the data or method to which access is desired. In the case of data, the access may be for reading or writing. In the case of a method, the access is to allow one to invoke the method. The dot within a floating point number is a decimal point not a dot operator.
对书上课后题如何编写的讨论。
基于评分标准,我给本博客打分:14分。得分情况如下:
正确使用Markdown语法(加1分):
模板中的要素齐全(加1分)
教材学习中的问题和解决过程, 一个问题加1分
代码调试中的问题和解决过程, 一个问题加1分
本周有效代码超过300分行的(加2分)
其他加分:
学习还需下真功夫
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
第三周 | 453/1000 | 3/7 | 22/60 |
尝试一下记录「计划学习时间」和「实际学习时间」,到期末看看能不能改进自己的计划能力。这个工作学习中很重要,也很有用。
耗时估计的公式:Y=X+X/N ,Y=X-X/N,训练次数多了,X、Y就接近了。
计划学习时间:24小时
实际学习时间:20小时
改进情况:
(有空多看看现代软件工程 课件
软件工程师能力自我评价表)
20182318 2019-2020-1 《数据结构与面向对象程序设计》第2和3周学习总结
标签:静态方法 dom mic 通过 软件 代码调试 排版 case 变量
原文地址:https://www.cnblogs.com/1400694592qq/p/11569790.html