4
PacRat
4y

Learning C++
im excited. i aim to start development with wxwidgets

Comments
  • 0
    @shoop Really? That part was never an issue for me. It's always been the OOP stuff combined with memory management.
  • 0
    @shoop Neither OOP nor memory management is difficult on their own, but when they cross in c++, it gets difficult.
  • 0
    When was the last time wxwidgets got updated? I will say look into this once.
    You can give QT a chance if u r working mainly for learning or open source.
  • 0
    @AlgoRythm

    Starting from C++ 11 memory management become easier.

    Use this rule. Pointer only point. You do not create new object or delete with pointer.Unless the memory address change just like when vector may invalid memory the rule is very useful.
  • 0
    Also look into imgui and nano gui for simple gui program.
Add Comment