In many programming languages, the main function, subroutine, or method marks the entry point of the program. It is generally the first-programmer-written function run when a program starts.

learn more… | top users | synonyms

0
votes
2answers
28 views

Can't Instantiate Field (instance variable) in main() method. Why?? Java

Can someone tell me what I am doing wrong here? When I have this code in Eclipse, it is telling me I cannot "make a static reference to a non-static field" when I try to set sheetName to "hi" in the ...
0
votes
0answers
10 views

Use an application wrote in console and use it into Windows Service in c#

I have an application in Console of C# and now i want to run this app as a Windows Service ... it give me a lot of errors !!!! as an example : it is a code that cut a program to another place. ...
-3
votes
4answers
50 views

void or int is not required in main function this programm

I have inherited class b1 and class b2 in class b3. class b1 and class b3 have same functions. without void or int its compiled but with it giving error Too many types in declaration ...
0
votes
1answer
46 views

Access command line before main started

Is there a way to access argv from a static initializer before main() has been started? class FooInitializer { public: FooInitializer() { // do something funny depending on argv } }; ...
0
votes
1answer
61 views

“does not contain a static 'main' method suitable for an entry point”

I can't figure what's my wrong with my code below. When I try to compile I get the message: does not contain a static 'main' method suitable for an entry point. This is my code: using System; ...
0
votes
1answer
28 views

VB.NET I accidentally changed the generated Main

I was messing around with multithreading earlier today, trying things, messing up, fixing them, etc. One of the exceptions thrown was at app.Run() and I didn't know if it was essential or not (now I ...
3
votes
4answers
52 views

Java Puzzler- What is the reason? [closed]

I wrote following code. class String { private final java.lang.String s; public String(java.lang.String s){ this.s = s; } public java.lang.String toString(){ ...
0
votes
1answer
10 views

Trying to move my object initialisation and method calls out of my Main method

I am trying to move some code out of the main method and use it in another class. The reason for doing this is that I learnt it was advised convention to do so and I am relatively new to Java so ...
0
votes
1answer
20 views

.jar doesnt run on debian

Im trying to execute a .jar file i have like 3 days trying to run it and nothing i tried right clink and run with java and nothing happens, i tried like a million ways in the console but nothing, the ...
0
votes
0answers
9 views

simulator crash on main

If I create a new clean app, I write some simple code like add uitextfiel or add value to object (code write 100 time) I try to run the application and 1 time go and one time crash on Thread 1 - "7 ...
0
votes
3answers
56 views

Multiple main CPP files in VisualStudio?

I have a sample directory of some software, which contains multiple files with multiple main functions. May I assemble all of these files into single project, compile them and then run specific ones ...
0
votes
0answers
22 views

Delay iOS GUI until conditions are met

I don't want my GUI to start until a certain condition is met. This condition is activated once about 13 performSelectorInBackground complete. At the moment I'm looping on the main thread: ...
0
votes
1answer
35 views

Equivalent of fseek and ftell in main

I would like to know if there is an equivalent of fseek and ftell when I'm working in main. For example, if I type the name of a file when asked, at end I hit enter. Next I'll ask the user another ...
0
votes
1answer
46 views

How to notify outside thread of main thread state without using global variables?

Say i have main thread and it is running my win32 procedure and a few worker threads to carry out functions that are clicked on by the user. Lets say there is a change in the main function (I want 1 ...
0
votes
1answer
10 views

How to update form in an iFrame from input field in the main document?

I have a text input field (email address) with a submit button in the main document and a form in an iFrame. When I click on the submit button in the main document, the email address in the form in ...
0
votes
1answer
14 views

Updating the UI control's value in the runtime from background thread.

I know this sound a very simple question. I'm still a newbie in iPad app development. Would you please tell me how would I update the contents in the run time. The following code may be helpful to ...
1
vote
2answers
58 views

“Error: Could not find or load main class com.mycompany.App” when trying to execute Maven-generated Jar

I'm getting this error even though com/mycompany/App.class exists within the Jar and it has a main method. Here is what my META-INF/MANIFEST.MF looks like: Manifest-Version: 1.0 Archiver-Version: ...
0
votes
1answer
38 views

automatic main method netbeans

Does anyone know how to change the settings for the automatic creation of the main method in Netbeans (for C++) at least? The problem is that the main method that is automatically created forgets to ...
0
votes
1answer
20 views

Class Methods not linking to Tkinter GUI

it seems my Tkinter GUI is fine however when loaded the buttons which should activate the class methods do nadda. I was originally trying to initiate a class instance within the main: if_name_== ...
2
votes
2answers
42 views

Uses of non-standard main type signature in C

Was browsing the source code for sudo as provided on this site, and came across this super weird type signature (Bonus question: is there a more C-like term for "type signature"?) for main: int ...
1
vote
2answers
76 views

C# - Calling a function from static main

my question is probably very basic but I did not find an answer... I wrote a function (public checkSomething that gets 2 strings) in program.cs when I tried to call this function from static main I ...
0
votes
1answer
36 views

Exception in thread “main”, I think Integer.ParseInt() is stuck but I dont know why

My program gets 2 numbers from the user, one length 10 and one length 3. I am getting them as a string. I am then trying to use Integer.parseInt() to turn them into an integer. I have no code errors ...
0
votes
2answers
15 views

Starting the main(String args[]) from other package

I was looking for a possibility to start the Main fom another class which has his own main. Is it possible? How can I do that?
0
votes
4answers
35 views

Java - Launch main method from object with type “Class<?>”

so here is my deal. I have a object like this Class<?> myClass = getMyClass(); // don't ask about getMyClass() method, it's not important, just be sure that this method returns a class. ...
0
votes
1answer
43 views

Calling UILocalNotification from Main.m

I'm not sure if this is possible but I'm trying to fire a UILocalNotification from a function running on Main.m. So far I tried a couple of different ways but I'm a bit confused on who must present ...
0
votes
1answer
220 views

Unable to open log device '/dev/log/main': No such file or directory on my Nexus 4

As you can see my problem is : Unable to open log device '/dev/log/main': No such file or directory . The application i'm writing i'm testing on my nexus 4. How can i resolve the problem?
0
votes
0answers
15 views

Simple array in the complicated code using the method

The code line public static void averageHeight is not working. When I enter each entry of male and female child's height they store into two separate arrays respectively. Once the loop stops, this ...
1
vote
2answers
59 views

changing llvm pass architecture to find desired function instead main function in module

I try to do some optimization on LLVM bitcode without generating final executable binary. I link all project bitcode.In this test there is no main function in bitcode, but LLVM needs to find a main ...
0
votes
1answer
42 views

Windows Form only refreshes(rerenders) button.visible when any other button is pressed.[c#]

I have a main form called "Main" which dynamically resizes itself depending on what buttons are enabled. Inside of Main I also have a function called Updater. Updater reloads all the information from ...
0
votes
2answers
43 views

Multiple files argument to main function

I want to process multiple text files ( eg. compare 2 files) and pass the files as argument to the main function. How do I do that ? How to I pass multiple files arguments from the command line? ...
-2
votes
1answer
24 views

Main C Program does not find header and methods

Wasn't really sure how to explain this any better in the title. Basically I am learning how to separate my code in C. I have a main, the equivalent of an ArrayList class from java (but converted to c ...
-1
votes
2answers
199 views

Python main function [duplicate]

I came across a line in python: def somefunc: [...] if __name__ == '__main__': somefunc I don't understand what the "if __name ..." does. Suppose we have: if __name__ == '__main__': ...
0
votes
0answers
14 views

wrapper on top, three different divs with background (header-bg, main-bg and footer-bg) z-index issue

Hi Im trying to have a wrapper on top of three divs that I have as background. I need the wrapper to overlap both header and footer. My problem is that the wrapper pushes the footer even tho I have ...
2
votes
1answer
36 views

Defining main in shared library on OSX

I'm using xcode to write an OSX app in c/c++. I'm linking a shared library (somelib.dylib) to the application and I'd like for the main function to reside in the shared library, not the main ...
0
votes
0answers
50 views

Calling a C++ Programm from Android with Java and JNI

I am working on an Android Java Platform and want to use a complete program that i developed in c++ to run. The c++ program consists of several cpp files with headers. My new Android project attaches ...
0
votes
0answers
67 views

Fatal Exception : Main andoid

With my friends, we're working in a project and for it i need to create an andoid application. (i specify, i'm a beginner at programming in java) So to start i've follow a good tutorial ...
0
votes
2answers
41 views

How do I switch string arguments on main

I have a c program which should take the first argument and check which function matches it. Example: ./test.o blabla Code: main(int argc, const char* argv) { switch (argv[1]) { case ...
1
vote
1answer
38 views

MinGW Main routine

In C there is no main program. Sure, C programmers begin with int main(int argc char *argv[]), but this only works because there is a routine that tells the compiler/IDE to run the function named main ...
0
votes
2answers
26 views

javadoc for String[] args

I want to make good documentation for my program. Function main receives parameters from command-line: LOGIN, PASSWORD etc(there are 9 parameters). /** * Command-line interface. * @param args ...
0
votes
2answers
42 views

Why do I get the “Selection does not contain a main type” when my class has a main?

I get the above error msg but my class does have a main method: package adventure; import com.jme3.system.AppSettings; import java.applet.Applet; import java.applet.AudioClip; import ...
0
votes
1answer
142 views

Automatic made “main” class in new JFrame at netbeans GUI design

When I create a new JFrame in Netbeans there is a main class which has been automatically created. Even if I put it inside /* */ the code works fine. I learnt in any java program there must only one ...
-5
votes
3answers
65 views

With out static keywork in main method getting the excption Exception in thread “main” java.lang.NoSuchMethodError: main

Sorry if it is a simple question for u.Buti am unable to find the proper reason for this. public class MainTest { static public void main(String[] args) { ...
0
votes
0answers
29 views

Python 2.7 on Windows, “assert main_name not in sys.modules, main_name” for all multiprocessing examples

There is following simple code: from multiprocessing import Process, freeze_support def foo(): print 'hello' if __name__ == '__main__': freeze_support() p = Process(target=foo) ...
0
votes
2answers
41 views

MAIN exception when replacing code in MainActivity

I'm a total noob to programming and Android. My school team and I were trying to develop our first android app, we didn't actually plan things well and our original MainActivity class had an input ...
0
votes
2answers
92 views

How to create a jar file with an Ant script to launch the program

I've currently got an eclipse project with two main methods and was wondering if it's possible to create a jar file which runs an Apache Ant script when the jar file is executed. I've provided an Ant ...
0
votes
1answer
50 views

Calling a method in main class from non main class

I have two Java classes: BoardManager & Board BoardManager is the main class. Inside it contains a board: public BoardManager(){ Board b = new Board(); } public ...
-5
votes
2answers
68 views

size() command not working when containing method is run within a static method [closed]

I don't know what is going on, here is my code: import java.io.*; File file; static void main(String[] Args){ try{ new MeshViewer().init(Args[0]); }catch (ArrayIndexOutOfBoundsException e){ ...
2
votes
4answers
129 views

Java: Calling a static method in the main() method

I am supposed to do the following: Write a Java application (Client) program with a static method called generateEmployees( ) that returns a random list of 10 different types of Employee objects. ...
0
votes
4answers
89 views

How do I define main(String[] args) in Java without getting warnings and errors?

When I create a new main.java file in the default package in my Eclipse project, it generates a main method that looks like: public static void main(String[] args) { } This immediately raises a ...
-1
votes
3answers
88 views

Running Java code in Eclipse without main

I have a Java project(running in Eclipse) without main method and need to debug and see which is the caller class and the flow of the program. How do I start? It is a simple project and does not ...

1 2 3 4 5 15