文件名称:static-founction
- 所属分类:
- JSP源码/Java
- 资源属性:
- [Java] [源码]
- 上传时间:
- 2013-03-20
- 文件大小:
- 1kb
- 下载次数:
- 0次
- 提 供 者:
- 顾*
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
静态变量:由static修饰,静态变量是所有对象共享,唯一。
可以直接使用 类名.变量名 调用。
静态方法:方法中不能使用非静态的变量或对象,除非该变量或对象是在该方法
中申明或定义的。
可以直接使用 类名.方法名() 调用该方法。
不能被子类重写(覆盖 )。
静态代码块: static{你的代码}代码块中不能使用非静态的变量或对象,
除非该变量或对象是在该方法中申明或定义的。
该代码块在类加载的执行一次,不会再执行第二次。-Static variables: static modification, static variables are shared by all objects only. Can directly use the class name and variable name call. Static methods: the method can not use a non-static variable or object, unless the variable or object is affirmed in the method or definition. Can directly use the name of the class method name () This method is called. Can not be overridden by subclasses (coverage). Static code block: static {your code} code block can not use non-static variable or object, unless the variable or object is in the method declaration or defined. The code block in the implementation of the class loading time, no longer perform a second.
可以直接使用 类名.变量名 调用。
静态方法:方法中不能使用非静态的变量或对象,除非该变量或对象是在该方法
中申明或定义的。
可以直接使用 类名.方法名() 调用该方法。
不能被子类重写(覆盖 )。
静态代码块: static{你的代码}代码块中不能使用非静态的变量或对象,
除非该变量或对象是在该方法中申明或定义的。
该代码块在类加载的执行一次,不会再执行第二次。-Static variables: static modification, static variables are shared by all objects only. Can directly use the class name and variable name call. Static methods: the method can not use a non-static variable or object, unless the variable or object is affirmed in the method or definition. Can directly use the name of the class method name () This method is called. Can not be overridden by subclasses (coverage). Static code block: static {your code} code block can not use non-static variable or object, unless the variable or object is in the method declaration or defined. The code block in the implementation of the class loading time, no longer perform a second.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
static founction\Test1.java
................\Test2.java
................\Test3.java
................\Test4.java
static founction