Table of contents Introduction Encapsulation How methods work How overloading works How mangling solves the problem Structure and size of the object How inheritance and polymorphism work How basic polymorphism works How multiple inheritance works Difference between different casting types Polymorphism and multiple inheritance What if we try something even more complicated Few words about […]
Tags:
C++,
call,
code,
CPU,
encapsulation,
functions,
identifier,
inheritance,
mangling,
memory,
method,
new,
OOD,
OOP,
polymorphism,
progming 55 Comments |
Read the rest of this entry »
From some reason this topic never got enough attention in libc. POSIX threads library does addresses this issue, however what starts in POSIX library stays in POSIX library. pthread_self() and friends will get you an identifier that is unique accross your program, but not accross your system. Although thread is a system object, the system […]
Tags:
call,
getpid,
gettid,
identifier,
linux,
pid,
posix,
pthread,
syscall,
system,
thread,
tid 11 Comments |
Read the rest of this entry »