给定Java代码如下所示,则编译运行后,输出结果是( )。 p...
发布于 2022-03-02 16:53:01
给定Java代码如下所示,则编译运行后,输出结果是( )。
public class Test { static int a int b static int c public int aMethod() { a++ return a } public int bMethod() { b++ return b } public static int cMethod() { c++ return c } public static void main(String args[]) { Test test1 = new Test() test1.aMethod() System.out.println(test1.aMethod()) Test test2 = new Test() test2.bMethod() System.out.println(test2.bMethod()) Test test3 = new Test() test3.cMethod() System.out.println(test3.cMethod()) } }
登录后免费查看答案
关注者
0
被浏览
33