Java声明抽象类的关键字是"abstract"。在类的定义前面加上"abstract"关键字,即可将类声明为抽象类。例如:```javapublic abstract class Animal { // 类的成员和方法}```