Tagged Questions
The main-method tag has no wiki summary.
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 ...
7
votes
5answers
2k views
Should I define a main method in my ruby scripts?
In python, a module doesn't have to have a main function, but it is common practice to use the following idiom:
def my_main_function():
... # some code
if __name__=="__main__": # program's ...
6
votes
8answers
703 views
How to write main() in an OOP way?
When I first started programming, I wrote everything in main. But as I learned, I tried to do as little as possible in my main() methods.
But where do you decide to give the other Class/Method the ...
5
votes
4answers
324 views
Using the main method of classes for debugging?
It is good practice to use the main method to test a java/.net class?
I've seen it reccommended in some text books, but to me it seems like using a unit testing framework would make more sense...
...
4
votes
1answer
628 views
TCHAR* envp[]: What is it?
I created a VC++ console project with Visual Studio and it auto-generated this function:
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) { ... }
I was just wondering what envp stands for and ...
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 ...
2
votes
4answers
187 views
Is it worth to ensure that non-callable Python classes do not get called?
If yes, can you suggest a better way than below? Please elaborate/justify.
class X:
...
if __name__ == '__main__':
# TODO: Should we bother doing this?
errorMessage = 'This class is not ...
2
votes
1answer
5k views
Proper use of UIApplicationMain
I have decided to load my views programmatically, so putting:
int ret = UIApplicationMain(argc, argv, nil, nil);
Would not work. I do have a ViewController and an AppDelegate, though. What would be ...
1
vote
6answers
361 views
Arguments to main in C
hey i don't know what to do! I have a great understanding of C basics. Structures, file IO, strings, etc. Everything but CLA. For some reason i cant grasp the concept. Any suggestions, help, or ...
1
vote
5answers
247 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
598 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
79 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
154 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
70 views
In languages where you have a choice, is it better to put the main function/method/code at the top or bottom?
When you're writing a program that consists of a small bit of main logic that calls a bunch of supporting functions, you can choose either put the main logic at the top of the file or the bottom ...
0
votes
2answers
100 views
Iterate through main function in C?
Here is my main function:
int main(int argc, char **argv)
{
LoadFile();
Node *temp;
char *key;
switch (GetUserInput())
{
case 1:
temp = malloc(sizeof(Node));
printf("\nEnter the key of ...
0
votes
1answer
280 views
Joining Multiple Projects in one solution
I have started creating a game, and I added a second project, it's the standard XNA Windows game 3.1 project, and since the other project already had a Main to start the program and the 2nd is for ...
0
votes
3answers
42 views
Name that pattern: Does a decent name for this type of executable module already exist?
I'm having trouble naming a set of software modules that follow the same pattern. I'm hoping this already is a named pattern as I can't come up with a decent name.
The situation:
I have a fairly ...
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() {
...