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.
tank/src/main/java/com/msb/abstractFactory/AK47.java

21 lines
375 B

package com.msb.abstractFactory;/**
* @Author bingor
* @Date 2022/10/8 15:40
* @Description: com.msb.abstractFactory
* @Version: 1.0
*/
/**
*@ClassName AK47
*@Description TODO
*@Author bingor
*@Date 2022/10/8 15:40
*@Version 3.0
*/
public class AK47 extends Weapon {
@Override
public void shoot() {
System.out.println("AK47 shoot……");
}
}