Search found 173 matches

by X Abstract X
Thu Mar 25, 2010 11:34 pm
Forum: Programming Discussion
Topic: Software Engineering Question [ SOLVED ]
Replies: 5
Views: 527

Re: Software Engineering Question

From what you said it sounds like you are fairly new to programming and you want to be able to engineer your future programs so they are flawless. Sadly, this isn't possible no matter how hard you try, it just comes with lots of practice. The more you program, the more you will realize that your old...
by X Abstract X
Wed Mar 10, 2010 11:13 pm
Forum: Programming Discussion
Topic: Best naming techniques/conventions to use?
Replies: 8
Views: 607

Re: Best naming techniques/conventions to use?

It doesen't matter as long as you stick with it for the entire project. If you decide to work on team projects your going to have to learn to adapt to different conventions to keep things consistent between team members anyway. With that said, there's certain language dependent naming conventions th...
by X Abstract X
Tue Mar 02, 2010 10:07 pm
Forum: Programming Discussion
Topic: CodeBlocks Question
Replies: 7
Views: 743

Re: CodeBlocks Question

Yes, in visual studio for example, my headers and source files are in separate "folders". However, when you look at them in the project folder outside of Visual Studio, they are NOT in separate folders.
by X Abstract X
Tue Mar 02, 2010 4:06 pm
Forum: Programming Discussion
Topic: CodeBlocks Question
Replies: 7
Views: 743

Re: CodeBlocks Question

I'm going to take a guess that it is the same as in Visual Studio. The only reason they call it virtual is because it isn't a folder that actually exists on your disk - it only exists in the IDE, for organizational purposes.
by X Abstract X
Sat Feb 13, 2010 11:33 pm
Forum: Game Development
Topic: J-fail: Unstoppable
Replies: 96
Views: 8998

Re: J-fail: Unstoppable

Their game looks great. I don't even have anything against using XNA, it's alright if you want to focuss on the game design instead of the lower level programming. But, what I hate about these guys is the arrogance of their team, especially when it's coming from the team members that don't even cont...
by X Abstract X
Sat Feb 13, 2010 3:16 pm
Forum: Programming Discussion
Topic: Static in C#
Replies: 11
Views: 773

Re: Static in C#

Say you have a class called Apple. Then, you have a method eat().

if eat() is static, you call it like this:

Code: Select all

Apple.eat();
if eat() is non-static, you first create an Instance of Apple, then call eat() on the instance:

Code: Select all

Apple myApple = new Apple();
myApple.eat();
by X Abstract X
Sat Feb 13, 2010 3:07 pm
Forum: Programming Discussion
Topic: How many languages do you know?
Replies: 27
Views: 1846

Re: How many languages do you know?

Java, C++ and a small amount of Pascal.
by X Abstract X
Sat Feb 13, 2010 1:25 pm
Forum: Programming Discussion
Topic: Programming In Multiple Languages
Replies: 3
Views: 400

Re: Programming In Multiple Languages

If you use JOGL you will have to use awt for input. With LWJGL however, it handles input too. LWJGL is also a lot cleaner, more stable, and makes more sense because JOGL is object-oriented (over complicates everything, especially if you already have experience using openGL in C++). In the past peopl...