auto func = [/*capures*/](/*arguments*/){/*body*/}; Captures: <var> … Local variable by value &<var> … Local variable by reference = … All
Continue readingCategory: Development
Q&A – Programming (C++)
When do I need the headers for lib files? You need them during compilation if you build against libraries. You
Continue readingPosition of const (C++)
“West-Const vs. East-Const” West-Const (The common one) int * num = new int(42); // Mutable ptr to a mutable int
Continue readingstd::recursive_mutex (C++)
The std::mutex is a non-recursive mutex and therefore can’t be locked again from the same thread before getting unlocked. This
Continue readingMain thread vs. Worker thread(s)
1. Main thread – Gets created during startup – It’s possibly the only thread – Normally sets up the app/program
Continue readingDoes Java have pointers?
Most guys would say “No, but C++ has pointers” and they are right, but not in the way they assume
Continue readingMove semantics (C++)
Since C++11 we can now use move semantics (move constructor, move assignment operator). They provide a perfomance boost over copy
Continue readingUnit testing series – Test with Mock (Part 5)
The third szenario is using a mock. Mock Test App Exec $ g++ -c UserInterface.cpp WindowManager.cpp $ ar rcs libwnd.a
Continue readingUnit testing series – Test scenario (Part 2)
For my unit testing series I have designed the following szenario. Prev: Unit testing series – Intro / Setup (Part
Continue readingUnit testing series – Intro / Setup (Part 1)
Introduction With unit testing you want to test the smallest unit possible, which means a single function. These units shall
Continue reading