2021. 6. 1. 16:18

c++ User defined literals

2021. 1. 11. 15:11

ARM assembly

2020. 2. 20. 14:12

objective c

2020. 2. 8. 21:27

Template metaprogramming

2020. 1. 30. 19:27

C++ Template

2019. 9. 1. 11:43

JavaScript Reference

2019. 2. 14. 13:18

Top 10 dumb mistakes to avoid with C++ 11 smart pointers

2019. 1. 21. 11:00

Circular reference problem with smart pointer

Circular dependency issues with std::shared_ptr, and std::weak_ptr

Smart pointers which is implemented using reference counting cause a memory leak when there is a circular dependency with them.


2018. 10. 17. 18:57

c++ Clocks and Timers

2018. 3. 13. 13:47

thread of c++

c++ 11 Multithreading

Multithreading in C++0x

 

Multithreading in C++0x part 1: Starting Threads | Just Software Solutions - Custom Software Development

This is the first of a series of blog posts introducing the new C++0x thread library. Concurrency and multithreading is all about running multiple pieces of code in parallel. If you have the hardware for it in the form of a nice shiny multi-core CPU or a m

www.justsoftwaresolutions.co.uk

Thread-Safe Initialization of Data