Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Range based for loops and multiple iterators

C++11 lambda function definition in if-else

c++ c++11 lambda auto

Initializer list syntax in member initializer list using C++11

Why can I populate variables through a std::map before main()?

C++11's deleted destructor in derived class

c++ c++11 destructor

C++ stringstream adding extra bytes

c++ c++11 stringstream

In new c++11 projects, should I delete any operations by default?

c++ c++11 delete-keyword

Undefined reference to static constexpr string (except if it's a pointer)

c++ c++11 static constexpr

get first character of a string from a string vector

c++ string c++11 vector stl

Do I need to know the algorithm's code to take advantage of inserters and move iterators?

c++ c++11 stl

C++ Use of deleted function error

c++ c++11 smart-pointers

Do the iterator invalidation rules mean thread safety?

c++ multithreading c++11 std

What is the exact type of "" when deduced by `auto`?

c++ c++11 auto c-strings

why auto i = same_const_variable could not deduce "const"?

c++ c++11 auto type-deduction

Equivalent of "typename", to indicate that a dependant name is indeed a 'template template parameter'

Polymorphic smart pointer usage

c++ c++11

Different behaviour between "int &&" and "auto &&"

c++ c++11

Should I use LL when assigning a value to long long c++

c++ c++11 declaration c++14

C++ constructor thread safety

Why can't an object containing a ostringstream member be constructed?