We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Why cant we use static variable declaration inside static block??
Like -
static{
Scanner scan = new Scanner(System.in);
int B = scan.nextInt();
int H = scan.nextInt();
boolean flag = true;
try{
if(B <= 0 || H <= 0){
flag = false;
throw new Exception("Breadth and height must be positive");
}
}
catch(Exception e){
System.out.println(e);
}
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Static Initializer Block
You are viewing a single comment's thread. Return to all comments →
Why cant we use static variable declaration inside static block?? Like -
static{ Scanner scan = new Scanner(System.in); int B = scan.nextInt(); int H = scan.nextInt(); boolean flag = true;
}