- charoo1983
- Posts : 1
Join date : 2016-04-05
Return statement issue
Tue Apr 05, 2016 7:06 pm
public class hi {
public String display(){
//String x="hello";
return "hello";
}
public static void main(String[] args) {
// TODO Auto-generated method stub
hi h=new hi();
h.display();
Result - not displaying anything in console
public String display(){
//String x="hello";
return "hello";
}
public static void main(String[] args) {
// TODO Auto-generated method stub
hi h=new hi();
h.display();
Result - not displaying anything in console
- kishor.meher@outlook.com
- Posts : 2
Join date : 2016-04-11
Re: Return statement issue
Mon Apr 11, 2016 8:43 pm
To display the result, you must put a statement likeĀ
System.out.println(x);
simply putting (return "hello") won't display in console because it returns as a value to, where the method is called from.
System.out.println(x);
simply putting (return "hello") won't display in console because it returns as a value to, where the method is called from.
- In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing
- key_press_native issue
- Interesting Issue
- IsEnabled method return True for disabled objects. what to do ?
- How to return the focus to original frame after entering text in tinymce?
Permissions in this forum:
You cannot reply to topics in this forum