| Author |
How to get flow of Back end programme execution through command prompt.
|
Mahi Ranga
Ranch Hand
Joined: Jan 27, 2011
Posts: 33
|
|
Hi,
How can i get flow of Back end Programme execution through command prompt.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12953
|
|
|
Can you explain in more detail (maybe with an example) what you mean?
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Mahi Ranga
Ranch Hand
Joined: Jan 27, 2011
Posts: 33
|
|
hi,
for example :
public class A{
public static void main(String args[]){
String str="abc";
str+="def";
System.out.println(str);
}
}
the above example String is Immutable,but how the string value stored in heap.if i can run this through command prompt using some command(that one i donot know).i want that command.please let me know.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
|
You are asking several questions which appear unrelated to one another. Strings. Command: java A For following the flow of execution, add this sort of thing
|
 |
 |
|
|
subject: How to get flow of Back end programme execution through command prompt.
|
|
|