I have this java code:
String e;
if(true){
e = "ee";
}
if(e == "ee"){
System.out.println(e);
}
How I can "use" the variable e out the first if statement? I add some stupid conditions (if(true).. etc.) just for try.
I'm SOrry for my bad english :v