I have created a class building with constructor :
public class Building {
private String Adress;
private String Town;
public Building(String A, String T) throws NullPointerException {
if (A == null || T == null) {
throw new NullPointerException();
}
else{
Adress = A;
Town = T;
System.out.println(Adress+Town);}
public String getAdress() {
return Adress
}
}
After that in main i do this :
public static void main(String[] args) {
try{Building MyBuilding = new Building("Prelungirea Ghencea", "Tulcea");}
catch(NullPointerException e){
System.out.println("Adresa sau Orasul lipsesc");
}}
And when I want to call
`MyBuilding.getAdress()`
, copilator is saying that object MyBuilding does not exist. The statement from try/catch is not creating the object? I should create object Building after all try and catch blocks?