唐宇迪人工智能經(jīng)典項(xiàng)目實(shí)戰(zhàn)(面試必備)
2022-10-13 10:43 作者:娜娜絡(luò)絡(luò) | 我要投稿
public class Animal {
? ?String name;
? ?Integer age;
? ?public Animal() {
? ?}
? ?public Animal(String name, Integer age) {
? ? ? ?this.name = name;
? ? ? ?this.age = age;
? ?}
? ?void run() {
? ? ? ?System.out.println("一只" + this.age + "歲的" + this.name + "在奔跑!~~");
? ?}
? ?void sound() {
? ? ? ?System.out.println("一只" + this.age + "歲的" + this.name + "在吼叫!~~");
? ?}}
標(biāo)簽: