单选题:For code below, which statement is NOT correct?
For code below, which statement is NOT correct? @[A](2)
```Java
import static haha.Haha.*;
…
public class Lala {
public void mian(String[] args) {
…
take(args);
…
}
}
```
A. take() is a global function
B. take() is a non-static member of Lala
C. take() is a static member of Lala
D. take() is a static member of Haha
A.take() is a global function
B.take() is a non-static member of Lala
C.take() is a static member of Lala
D.take() is a static member of Haha
答案:A
```Java
import static haha.Haha.*;
…
public class Lala {
public void mian(String[] args) {
…
take(args);
…
}
}
```
A. take() is a global function
B. take() is a non-static member of Lala
C. take() is a static member of Lala
D. take() is a static member of Haha
A.take() is a global function
B.take() is a non-static member of Lala
C.take() is a static member of Lala
D.take() is a static member of Haha
答案:A