早教吧 育儿知识 作业答案 考试题库 百科 知识分享

计算机程序分析说明class A{ static int p; int z; char c; boolean b; long l; A(int za,char ca) { this.z=za; this.c

题目详情
计算机程序分析说明
class A
{
static int p;
int z;
char c;
boolean b;
long l;
A(int za,char ca)
{
this.z=za;
this.c=ca;
}
void f()
{
System.out.println("这是类方法f()");
}
int j()
{
this.z=1;
System.out.println("这是类变量z="+z);
}

void pr()
{
String s;
swich (p)
{
case 1:
s="My1";
break;
case 2:
s="My2";
break;
case 3:
s="My3";
break;
▼优质解答
答案和解析
说明神马?