Salman AL Ответов: 1

Как исправить ошибки как можно скорее, пожалуйста! !


 помощью javac -classpath и .:/run_dir/с JUnit-4.12.jar описание:цель/зависимости/* -д . Main.java Mobile/Id190099306.java Mobile/Mobile.java
Мобильные/Мобильные.Ява:45: ошибка: &ЛТ;идентификатор&ГТ; ожидается
Public int getId() {
^
1 ошибка
состояние выхода компилятора 1

Что я уже пробовал:

public class Mobile {

  private int id;

  private String brand;

 

public Mobile() {

    id = 0;

    brand = "";

  }

 

public Mobile(int n, String name) {

    id = n;

    brand = name;

  }

 

public void setBrand(String w) {

    brand = w;

  }

 

public void setId(int w) {

    id = w;

  }

 

Public int getId() {

return id;

  }

 

public String getBrand() {

return brand;

  }

 

}

public class Id190099306{

  public static void main(String[] args) {
  
  //Creating M1 and M2 using first constructor
  Mobile M1= new Mobile();
  Mobile M2= new Mobile();
  
  //Printing characteristics of M1
  System.out.println(M1.getId());
  System.out.println(M1.getBrand());
  
  //Printing Characteristics of M2
  System.out.println(M2.getId());
  System.out.println(M2.getBrand());
  
  //Creating M3 using second constructor
  Mobile M3= new Mobile(123,"Apple");
  
  //changing id and brand of M3
  M3.setId(12345);
  M3.setBrand("Samsung");
  
  //printing id of M3
  System.out.println(M3.getId());
 }

}

1 Ответов

Рейтинг:
1

Greg Utas

Вы заглавные буквы написали public.