博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java static用法详解
阅读量:5073 次
发布时间:2019-06-12

本文共 742 字,大约阅读时间需要 2 分钟。

1、修饰方法、变量

2、修饰代码块

3、静态内部类

4、静态导包

 

package com.shob.oth;import java.util.Objects;import static java.lang.System.out;public class Other {	static{				System.out.println("12331");	}		private static String st = "xx";		public static void main(String[] args) {		int a =0,b=0;		System.out.println(Objects.equals(a, b));		out.println("123");		for (int i = 0; i < 2; i++) {			a+=i;			System.out.println(i);		}				Tes tes = new Tes();		tes.setIak("1");		tes.setIdk("2");				String s = "1";		String s1 = "1";		System.out.println(Objects.toString(tes));				System.out.println(Objects.deepEquals(s, s1));						SClazz sc = new SClazz();	}		static class SClazz{		static{			System.out.println("12");		}	}	}

  

转载于:https://www.cnblogs.com/binbang/p/6398490.html

你可能感兴趣的文章
Java中String直接赋字符串和new String的区别(面试常考)
查看>>
Eclipse 环境安装和配置优化
查看>>
html入门
查看>>
窗体控件的遍历
查看>>
1038 Recover the Smallest Number (30 分)
查看>>
列举几个关于Java Collections的常见问题并给出答案
查看>>
ASPxGridView 选中主表一行数据,从表自动选中(勾选)对应的行
查看>>
leetcode-Bulls and Cows
查看>>
什么叫抽象
查看>>
汉化、用户创建
查看>>
hdu 2489 Minimal Ratio Tree
查看>>
android控件之EditText
查看>>
oracle中的分组排序
查看>>
技术人的“匠心”:一件事竟然做了20年…
查看>>
人工智能
查看>>
cmd的使用
查看>>
flask数据库迁移
查看>>
【SVN】总结:svn“Previous operation has not finished; run 'cleanup' if it was interrupted“
查看>>
javascript 基础知识
查看>>
趋势:flex和grid使布局更简单
查看>>