单项选择题

已知有下面的类说明:
pubic class Test4
private float f=1.0f;
int m=12;
static int n=1;
public static void main(String args[])
Test4 e=new Test4();
在main()方法中,下面( )使用是正确的。

A.f
B.this.n
C.Test4.m
D.Test4.f