I have 2 codes:
Code 1:
class Principal {
public static void main(String[] args){
Pessoas pessoa1 = new Pessoas();
pessoa1.idade = 1;
pessoa1.nascimento = 2;
pessoa1.altura = 0.5;
pessoa1.nome = "texto";
}
}
Code 2:
class Pessoas {
int idade;
int nascimento;
double altura;
String nome;
public static void main(String[] args){
}
}
I've tried to use package
and import
, but it did not work. I think I used them wrong. How do I use them to use code 2 in code 1?
NOTE: Both codes are in the same folder.