Tagged Questions
11
votes
5answers
12k views
Invoking Java main method with parameters from Eclipse
During development (and for debugging) it is very useful to run a Java class' public static void main(String[] argv) method directly from inside Eclipse (using the Run As context menu).
Is there a ...
2
votes
2answers
152 views
Java app lifecycle
When does a typical Java app finish?
If I start a new thread in the main method and then the main method finishes, but the other thread continues working, the app would still be on until all it's ...
1
vote
5answers
248 views
Inheriting the main method
I want to define a base class that defines a main method that instantiates the class, and runs a method. There are a couple of problems though. Here is the base class:
public abstract class Strategy
...
1
vote
5answers
599 views
Java methods and classes, how do they fit together? (Solved)
Currently I am writing a program for an introductory Java class. I have two pieces to my puzzle. Hopefully this is a relatively simple to answer question.
Firstly, here is what I am trying to use as ...
0
votes
2answers
80 views
What is the equivalent Main method for Java in c#
in
Java, you can write:
public static void Main(String[] args) { }
and than "right click" => "run as" => "Java application" and it will run the current Main Method.
Any chance to have that in ...
0
votes
4answers
155 views
How can I determine which class's `main` method was invoked at runtime?
I'd like to dynamically determine which class's main method was invoked, in order to allow for an easier to digest combined log file.
Currently, a single (rotated) log file aggregates all the log ...
0
votes
3answers
604 views
Finding the class with the main method in an applet
I'm trying to use this tool
https://swingexplorer.dev.java.net/
to find some information out about an applet's swing structure. Unfortunately, I didn't develop the applet. I've pulled the jars for ...
-1
votes
7answers
164 views
no method main - but main is there?
class TapeDeck {
boolean canRecord = false;
void playTape() {
System.out.println("Tape Player");
}
void recordTape() {
...