Tagged Questions

4
votes
4answers
423 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 …
1
vote
5answers
207 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 …
5
votes
5answers
2k 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 …
0
votes
3answers
175 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 …
5
votes
8answers
536 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
203 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... …