You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
在编写Java进阶题代码时,定义抽象方法时编译报错。
|
|
|
AI指出抽象方法不允许包含方法实现,并提供了正确语法格式,完成修正后编译通过。
|
|
|
在实现多态数组时,未掌握父类数组存放子类对象的用法,
|
|
|
AI说明数组多态的使用规则后,完成了数组遍历与方法调用代码,程序正常运行。
|