对于下列代码,下列哪个叙述是正确的? class People { People(int m) { } } class Student extends People { } A. 可以用People类以及无参数构造方法创建对象:new People()。 B. 可以用Student类以及无参数构造方法创建对象:new Student()。 C. 代码无法通过编译。 (原因是,父类People已经没有了不带参数的构造方法,而子类Student构造方法默认调用People类的不带参数的构造方法)。 . D. People类不能创建对象。