Tagged Questions

1
vote
2answers
125 views

Making a 2D engine: compiling necessary libraries with the engine instead of the game

I'm making a 2D engine in C++, and I want to be able to supply a .dll and a .lib so that games can just include those and everything is fine and dandy. I've looked at how Ogre doe …
5
votes
3answers
182 views

Call another function when main() exits.

Is it possible to call an extra function when main() exits in C? Thanks!
5
votes
18answers
703 views

Why the name main for function main()

Why the function name main() is retained in many languages like C, C++, Java? Why not any other names for that function? Is there any common structure for all these 3 main() (in C, …
2
votes
6answers
279 views

Main’s Signature in C++

The standard explicitly states that main has two valid (i.e., guaranteed to work) signatures; namely: int main(); int main(int, char*[]); My question is simple, would something …
5
votes
10answers
601 views

C Main Loop without 100% cpu

#include <stdio.h> int main() { while(!DONE) { /* check for stuff */ } return 0; } The above code sample uses 100% cpu until DONE is true. How can I implement a …
0
votes
4answers
202 views

how to avoid writing main() too many times in C ?

Let say I have 5 small piece of codes in C. Every time I want to test each piece of code, I have to repeat this process: #include <stdio.h> int main() { // code piece go …
3
votes
5answers
130 views

Python: imports at the beginning of the main program & PEP 8

The PEP 8 recommends that modules be imported at the beginning of programs. Now, I feel that importing some of them at the beginning of the main program (i.e., after if __name__ = …
3
votes
9answers
411 views

main() in C, C++, Java, C#

Is main() (or Main()) in C, C++, Java or C#, a user-defined function or a built-in function?
0
votes
5answers
323 views

c# closing progam from Main contructor

after alot of head scathing i think I have made some progress. I am not 100% sure but Can you exit an application before the constructor is finsihed and the main form loaded? cons …
0
votes
4answers
263 views

Why do I need a wrapping class? c#

I have a program of some length, with a class and many methods. All of these have to be contained in one huge class that wraps the entire file except the using statements. The nece …
9
votes
9answers
524 views

C++ main() in a large OOP project

This may be a short & simple question, but I've never found a satisfying answer to it: What code does the main() function usually consist of in a large C++ project? Would it b …
1
vote
2answers
901 views

Imported Java applet project into netbeans won’t work, Netbeans refuses to identify or even find main class even when manually set

Hi everyone, I'm trying to set the main class in netbeans to be the main class it was in the last environment it was in, however the program insists it can't find the main class i …
4
votes
9answers
873 views

Why default return value of main is 0 and not EXIT_SUCCESS ?

Hello, the iso 1998 c++ standard specifies that not explicitly using a return statement in the main is equivalent to use "return 0". But what if an implementation has a different …
8
votes
4answers
754 views

Why does int main() {} compile?

(I'm using Visual C++ 2008) I've always heard that main() is required to return an integer, but here I didn't put in return 0; and and it compiled with 0 errors and 0 warnings! In …
2
votes
5answers
295 views

How to determine main class at runtime in threaded java application?

I want to determine the class name where my application started, the one with the main() method, at runtime, but I'm in another thread and my stacktrace doesn't go all the way back …

1 2 next
15 30 50 per page