在Angular 9中,类和接口是定义和组织代码的关键元素。以下是一些解决方法,其中包含了类和接口的代码示例:
export class Car {
private brand: string;
private model: string;
constructor(brand: string, model: string) {
this.brand = brand;
this.model = model;
}
getBrand(): string {
return this.brand;
}
getModel(): string {
return this.model;
}
}
export interface Person {
name: string;
age: number;
address?: string;
}
import { Car } from './car.model';
import { Person } from './person.interface';
const myCar: Car = new Car('Toyota', 'Camry');
console.log(myCar.getBrand()); // 输出:Toyota
const john: Person = {
name: 'John',
age: 25,
address: '123 Main St'
};
console.log(john.name); // 输出:John
console.log(john.age); // 输出:25
console.log(john.address); // 输出:123 Main St
请注意,在上面的示例中,类和接口的关键字分别是class
和interface
。类用于创建对象,而接口用于定义对象的结构。同时,export
关键字用于将类和接口导出,以便其他文件可以引用它们。
这些示例只是Angular 9中类和接口的基本用法,你可以根据自己的需求进一步扩展它们。