hmaster10 Posted March 25, 2006 Posted March 25, 2006 any suggested tutorials about creating guis for c++ programs?
LLXX Posted March 26, 2006 Posted March 26, 2006 Microsoft Win32 API Reference. That's how I learned...
hmaster10 Posted March 26, 2006 Author Posted March 26, 2006 i'll try to study that thanksis it easy to program in c++ if i'm use to java?
LLXX Posted March 26, 2006 Posted March 26, 2006 Java was derived from C++, so they're quite similar.
Zxian Posted March 30, 2006 Posted March 30, 2006 Well... sorta. There are things that you really need to be careful with in C++ that Java takes care of for you. For example, memory management is much more "hands on" in C++. Java has the garbage collector that cleans out your dynamically allocated memory for you, while in C++ you need to explicitly release that memory (otherwise you get a memory leak).Also, there's the whole consideration of pointers that is completely absent in Java. I would suggest reading up on these. They're pretty powerful in some applications in ways that are much more efficient than using big arrays or other data structures.
phkninja Posted April 13, 2006 Posted April 13, 2006 Want a simple way to make GUI's, with cross platform compatability and ease of use (only c++ code. no api calls, only calling constructors etc).My suggestion is a library called wxwigets (was wxWindows), has been running for years, is open source and is easy to use. I use it for my programs, and believe me I aint the best programmer in the world (taught myself c and c++ to intermediate level and am an electronics technician by trade)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now