-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ced2126
commit 15062f9
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
export class Cat { | ||
private age: number; | ||
private name: string; | ||
private breed: string; | ||
|
||
constructor(age: number, name: string, breed: string) { | ||
this.age = age; | ||
this.name = name; | ||
this.breed = breed; | ||
} | ||
set Age(age: number){ | ||
this.age = age; | ||
} | ||
|
||
get Age(): number { | ||
return this.age; | ||
} | ||
|
||
set Name(name: string){ | ||
this.name = name; | ||
} | ||
|
||
get Name(): string { | ||
return this.name; | ||
} | ||
|
||
set Breed(breed: string){ | ||
this.breed = breed; | ||
} | ||
|
||
get Breed(): string { | ||
return this.breed; | ||
} | ||
getInfo(): string { | ||
return `Имя: ${this.name}; Порода: ${this.breed}; Возраст: ${this.age}.` | ||
} | ||
} |