Explore >> Select a destination


You are here

hackingcpp.com
| | thephd.dev
16.1 parsecs away

Travel
| | Ever since I finished publishing the "defer" paper and successfully defended it on its first go-around (it now has tentative approval to go to a Technical Specification, I just need to obtain the necessary written boilerplate to do so), an old criticism
| | www.foonathan.net
9.1 parsecs away

Travel
| | When should you write a destructor? When a copy constructor? Does it make sense to have assignment only? Quick guidelines: rule of zero, rule of three, rule of five, and everything else.
| | www.cppstories.com
12.9 parsecs away

Travel
| | In C++11, we got a handy way to initialize various containers. Rather than using push_back() or insert() several times, you can leverage a single constructor by taking an initializer list. For example, with a vector of strings, you can write: std::vector vec { "abc", "xyz", "***" }; We can also write expressions like: for (auto x : {1, 2, 3}) cout << x << ", "; The above code samples use std::initializer_list and (some compiler support) to hold the values and pass them around. Let's understa......
| | simpleprogrammer.com
111.8 parsecs away

Travel
| With Rust's popularity rising among the developer community, it is essential to ask, will Rust replace Python? Which one is best for you? And, should you start learning Rust? This article gives you a complete picture of the Rust vs. Python landscape. By the end of the article, you'll have a clear idea of what [...]