单项选择题

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