今天再来刷基础题啦,这次不会的有点多,太难啦。挑两道java的语法题放进来学习学习1.以下代码在编译和运行过程中会出现什么情况(A) public class TestDemo{ private int count; public static void main(String[] args) { TestDemo test=new TestDemo(88); System.out.println(test.count); } TestDemo(int a) { count=a; } } A 编译运行通过,输出结果是88 B 编译时错误,count变量定义的是私有变量 C 编译时错误,Sys...