📜  java如何创建子类-Java代码示例

📅  最后修改于: 2022-03-11 14:52:12.356000             🧑  作者: Mango

代码示例2
//Cria uma classe, está dára informação a outra
//Create a class, this will be the one to give information to another
public class Teste {
}

//Esta vai coletar a informação da class "Teste" fazendo uma class com herança
//This one will be the one collecting information from "Teste" doing a class with inheritance
class SubClass extends Teste{

}