This website works better with JavaScript.
Home
Explore
Help
Sign In
YangYuting
/
java
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
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.
47
Commits
1
Branch
0
Tags
2.6 MiB
Java
100%
Tree:
61a50652c2
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '61a50652c2'
${ noResults }
java
/
W6
/
Animal.java
5 lines
146 B
Raw
Blame
History
// 抽象类:动物
public
abstract
class
Animal
{
// 抽象方法:发出叫声,没有方法体
public
abstract
void
makeSound
(
)
;
}
Reference in new issue