判断题 类的静态成员方法是否只能对 静态的数据成员进行操作?
达文西(449308559) 16:56:21
using System;
class Test
{
int x;
static int y;
void F()
{
x = 1;
y = 1;
}
static void G() {
y = 1;
}
static void Main() {
Test t = new Test();
t.x = 1;
Test.y = 1;
}
}
达文西(449308559) 16:56:30
看这个程序 x是非静态的
达文西(449308559) 16:57:01
但是main方法对x进行操作了阿