首页 > 代码库 > java静态成员变量,静态代码块执行测试
java静态成员变量,静态代码块执行测试
Java 类对象 静态成员变量,静态代码块加载执行顺序。
package com.yjm.pro; import java.io.IOException; import java.util.Properties; public class Pro { public static String url; public static String username; public static String password; public static String classforname; public static String log; public static Properties properties; static { System.out.println("类静态代码块 执行test...."); properties = new Properties(); try { properties.load(Pro.class.getResourceAsStream("pro.properties")); url = properties.getProperty("url"); username = properties.getProperty("username"); password = properties.getProperty("password"); log = properties.getProperty("log"); classforname = properties .getProperty("classforname"); } catch (IOException e) { e.printStackTrace(); } } }
测试代码
public static void main(String[] args) { // test1(); // test2(); // test3(); test4(); } private static void test4() { System.out.println(Pro.class); System.out.println("类静态变量" + Pro.log); }
执行结果
class com.yjm.pro.Pro
类静态代码块 执行test....
类静态变量yes
测试的类 静态数据,在类引用的时候,才会执行静态代码块的数据。
java静态成员变量,静态代码块执行测试
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。