Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SincereCSL/Playgrounds
/ eat
Function
eat
TypeScript/StudyTypeScript/src/class_02.ts:3–5 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
1
/// 类 :抽象类与多态
2
abstract
class
Animal {
3
eat() {
4
console.log(
'吃东西'
)
5
}
6
//抽象方法
7
abstract sleep(): void
8
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected