Τι θα τυπώσει ο παρακάτω κώδικας?
-SmallBean{a=5, b=500}
-SmallBean{a=1, b=3}
-RunTime Exception
-Δεν θα κάνει compile
Αιτιολογήστε το στα σχόλια
Τι θα τυπώσει ο παρακάτω κώδικας?
-SmallBean{a=5, b=500}
-SmallBean{a=1, b=3}
-RunTime Exception
-Δεν θα κάνει compile
Αιτιολογήστε το στα σχόλια
Consider the following code
[code language=”java”]
public class JavaApplication4 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String testValue = "1";
try{
testValue = "2";
return;
}catch(Exception e){
}finally{
testValue = "3";
}
}
}
[/code]
What will be the value of testValue at the end of execution?