找考题网-背景图
单项选择题

A.Person.say( 你好 );B.Person p =new Person();p.say();C.P……

下面是一个类的定义,哪个选项能够正确调用say方法?()



A.Person.say("你好");
B.Person p =new Person();p.say();
C.Person p =new Person();p.say("你好");
D.Person p =new Person();p.say(’你’,’好’);