Virtual Gets resolved at run-time, leading to a shorter compile-time. Template Gets resolved at compile-time, leading to a shorter run-time.
Continue readingCategory: Development
Layout of std:set (libstdc++)
Source code Analysis $ g++ –version g++ (Ubuntu 13.2.0-4ubuntu3) 13.2.0 $ g++ main.cpp -g $ gdb a.out (gdb) b 6
Continue readingData structures – Time complexity (libstdc++)
Cases B … Best case A … Average case W … Worst case If there is nothing mentioned, it matches
Continue readingLayout of std::unordered_set (libstdc++)
Layout The meta element on the stack consumes 7 words (56 Byte on x64, 28 Byte on x86). Each node
Continue readingLayout of std:deque (libstdc++)
Layout The meta element on the stack consumes 10 words (80 Byte on x64, 40 Byte on x86). Each chunk
Continue readingConceptual distinction – Programming (C++)
lvalue vs. rvalue An lvalue is usually on the left side of an assignment and is addressable in the memory.
Continue readingConceptual distinction – SW-Development
Parameter vs. Argument Both are related to functions. Parameters are the required input of a function. Arguments are the provided
Continue readingUse process block for pipeline inputs (PS)
If you get a parameter via the pipeline and don’t use a process block, you will operate just on the
Continue readingAccess caller variables from threads (PS)
In PowerShell, threads getting executed in separate run spaces. To access variables from the caller scope, you have to use
Continue reading