Glossary of Terms in the JavaTM platform --reference

http://docs.oracle.com/javase/tutorial/information/glossary.html

field :A data member of a class. Unless specified otherwise,a field is not static.

member: or  of a class. Unless specified otherwise,a member is not static.

method:A function defined in a class. See also . Unless specified otherwise,a method is not static.

variable :An item of data named by an identifier. Each variable has a type,such as int or Object,and a scope. See also information/glossary.html#local%20variable">local variable.

property:characteristics of an object that users can set,such as the color of a window.

attribute:Not listed in the above glossary

相关文章

HashMap是Java中最常用的集合类框架,也是Java语言中非常典型...
在EffectiveJava中的第 36条中建议 用 EnumSet 替代位字段,...
介绍 注解是JDK1.5版本开始引入的一个特性,用于对代码进行说...
介绍 LinkedList同时实现了List接口和Deque接口,也就是说它...
介绍 TreeSet和TreeMap在Java里有着相同的实现,前者仅仅是对...
HashMap为什么线程不安全 put的不安全 由于多线程对HashMap进...