Main Page

From ProgrammingExamples
Revision as of 21:10, 26 June 2010 by Griswolf (Talk | contribs)

Jump to: navigation, search

Welcome to ProgrammingExamples.net!

This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!

"Do"s and "Don't"s

"Do"s

  • Try to keep each example as short as possible.
  • Try to demonstrate a single concept per example.
  • Comment, comment, comment!

"Don't"s

  • Do not treat the wiki as your own personal code dump. Things that are placed here should be useful for many people.

Coding Standards

We don't want to get too carried away here, but below are some guidelines.

  • Try to use a sensible indentation scheme.
  • Use descriptive variable names.
  • Comment, comment, comment!

C++

I/O

Strings

Classes

Loops

STL Data Structures

STL Algorithms

Debugging

C++ TR1

C++0x

Math

GUI Systems

Qt

wxWidgets

A C++ based toolkit that is primarily used to create nice graphics and GUIs. From their Home Page:

wxWidgets is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX on 32-bit and 64-bit architectures as well as several mobile platforms including Windows Mobile, iPhone SDK and embedded GTK+.It has popular language bindings for Python, Perl, Ruby and many other languages. Unlike other cross-platform toolkits, wxWidgets gives its applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. It's also extensive, free, open-source and mature. Why not give it a try?

One thing that this summary didn't mention is that there are more than GUI classes. There are classes that help with networking as well as many other whistles and bells. If you feel you need help there is a forum. You can also buy the book at Amazon or Amazon.uk. For more documentation, examples, tutorials, visit Wiki Page

If you have any questions, you can direct them to wxForum.

Stefano

--Evstevemd 16:47, 25 June 2010 (UTC)

Java

Python

Perl