public int e;
public void setE(int e){
this.e = e;
}
public int getE(){
return e;
}
public static void main(String[]args){
Cat cat = new Cat();
cat.setE(12);
int call = cat.getE();
System.out.println(call);
}
}
вот второй прием
public class Cat {
public static void main(String[]args){
Resume res = new Resume();
res.setE(12);
int call = res.getE();
System.out.println(call);
}
}
class Resume{
private int e;
public void setE(int e){
this.e = e;
}
public int getE(){
return e;
}
}
правильно ли я понимаю что они абсолютно идентичны друг другу?
Ну только в одном случае переменная private , в другом паблик А так чет одн и тоже, да
Понял, спасибо
А как это ты так красивинько код вставляешь тут в Телеге ?) Совсем отстал от технологий 😁
Обсуждают сегодня