自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 软件构造笔记——OOP(面向对象编程)

面向对象编程的几个基本概念 Object 拥有一组状态(statestatestate,即fieldsfieldsfields)和行为(behaviorbehaviorbehavior,即methodmethodmethod)。 Classes 每一个对象都有一个类用来描述其状态和行为,其中MethodsMethodsMethods和fieldsfieldsfields统称为membersmemb...

2019-06-24 20:20:54 241

转载 转载:如何转发csdn博客

在参考“如何快速转载CSDN中的博客”后,由于自己不懂html以及...

2019-06-17 11:36:45 372

转载 转载:java中成员变量和局部变量在内存中的分配

对于成员变量和局部变量:成员变量就是方法外部,类的内部定义的变量;局部变量就是方法或语句块内部定义的变量。局部变量必须初始化。 形式参数是局部变量,局部变量的数据存在于栈内存...

2019-06-17 11:21:43 1105 1

原创 软件构造笔记——可变性的危害

Risks of mutation Risky example #1:passing mutable values 以下为一个计算list中各数之和的方法: /** @return the sum of the numbers in the list */ public static int sum(List<Integer> list) { int sum = 0; ...

2019-06-16 20:18:57 260

原创 软件构造笔记——Mutability and Immutability

Mutability and Immutability 1.1 Immutability(不变性) 不变性是一种主要的设计原则,包括: Immutable types(不变数据类型):不变数据类型创建完后,值不可修改。 Immutable references(不变引用):一旦指定引用位置,不可再次指定。 final关键字对不可变类型提供了静态检查的支持: A final class d...

2019-06-16 20:17:31 229

原创 软件构造笔记——Type checking

Type checking Static checking Dynamic checking The bug is found automatically before the program even runs.静态检查针对类型,与变量特定值无关的错误。 The bug is found automatically when the code is executed.动态检查怎对...

2019-06-16 20:12:55 583

原创 软件构造笔记——java中的数据类型

Data type in programming languages 1.1 Types and Variable Types: A type is a set of values, along with operations that can be performed on those values. Variables: Named location that stores a val...

2019-06-16 20:00:53 130

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除