Ai
1 Star 0 Fork 0

lain/OOP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Tes1.java 832 Bytes
一键复制 编辑 原始数据 按行查看 历史
lain 提交于 2024-10-23 19:44 +08:00 . 1023提交
import java.awt.print.PrinterGraphics;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class Tes1 {
static {
System.out.println("static block");
}
// {
// System.out.println("instance block");
// }
public static void main(String[] args) {
System.out.println("main");
Tes1 t1 = new Tes1();
Integer it = 5;
System.out.println(it instanceof Integer);
System.out.println(Integer.MAX_VALUE );
System.out.println(System.currentTimeMillis());
System.out.println(System.nanoTime());
for(int i = 0;i < 10000;i++)
t1 = new Tes1();
// System.out.println("123");
System.out.println(System.currentTimeMillis());
File fis = new File("T1.java");
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lain_exe/oop.git
git@gitee.com:lain_exe/oop.git
lain_exe
oop
OOP
master

搜索帮助