Skip to main content
summaryrefslogtreecommitdiffstats
blob: 900f236185ff2c53c55b10062d25e7774b0e9d81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package p;
//initialize in method
class A{
	private static int i;

	static void f(){
		i= 0;
		int j= i;
	}
}

Back to the top