Skip to content
Snippets Groups Projects
Commit 196c2792 authored by Xun Yang's avatar Xun Yang
Browse files

compID assign test

parent 20d4c1b0
No related branches found
No related tags found
2 merge requests!20Master,!19Namenode
public class J1_01_compID_param {
public J1_01_compID_param() {
j = 5;
}
public int i = 4;
public int j = 1;
public static int n = 10;
public int m(J1_01_compID_param p){
p.i = p.i + 2;
return j + p.i;
}
public static int test() {
J1_01_compID_param k = new J1_01_compID_param();
return k.i + k.m(k) + J1_01_compID_param.n;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment