SFML community forums
General => General discussions => Topic started by: Nexus on March 10, 2012, 01:58:16 pm
-
Hello,
Please vote only if you program in C++ (not C or other languages).
I am interested if you make use of basic C++11 features that have already been implemented in compilers like VC 2010 or g++ 4.6.
This concerns mainly these language features:
- RValue references
- Lambda expressions
- Type inference (auto, decltype)
- Static assertions (static_assert)
- Null pointer literal (nullptr)
And new parts of the standard library, for example:
- Memory (std::shared_ptr, std::unique_ptr)
- Functional (std::function, std::bind())
- Containers (std::array, std::forward_list, std::unordered_set/map)
- Algorithms (std::copy_if(), std::move(), std::all_of(), ...)
- String Conversion (std::to_string(), std::stoi(), ...)
- Tuples (std::tuple)
- Type Traits
- Random
- Regex
-
Yes, I am, and they are quite nice in my opinion :) I use the new pointers and bind(). But I plan to learn the other features as well, but some of them aren't yet implemented in gcc 4.6.
-
Not yet, I haven't studied it very well but I'm very interested on the new pointers and smart pointers.
-
No, but i want to learn it :)
-
No, and I intend to stick with C programming. Gives lower level control.
-
But I plan to learn the other features as well, but some of them aren't yet implemented in gcc 4.6.
Do you know which ones? On the internet, I only find tables that compare language feature support, not library features...
No, and I intend to stick with C programming. Gives lower level control.
If you don't develop in C++, it's clear you don't use C++11. I should have mentioned the poll addresses only C++ programmers ;)
-
But I plan to learn the other features as well, but some of them aren't yet implemented in gcc 4.6.
Do you know which ones? On the internet, I only find tables that compare language feature support, not library features...
This is the closest thing I found...link (http://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2011)
And it says:
This page describes the C++11 support in mainline GCC SVN, not in any particular release.
And this (http://gcc.gnu.org/onlinedocs/gcc-4.6.3/libstdc++/api/) is the latest stable libstdc++ reference. I'm not sure, if I'm helpful :oops:
-
I don't use them, but it's more that I don't know enough about them. I don't think I'll use them in the near future, but I'm not uninterested either. Would anyone have a link to a nice tutorial introducing them? :)
-
I've sometimes used boost::shared_ptr, boost::function and boost::bind(), but I don't use C++11 to keep a wider compatibility.
-
unranked86, thanks for the links!
Mjonir, I currently don't know of a single tutorial that covers everything. Some sites that might help you:
- cpp-next.com is a good site to start, for example it contains series about move semantics (http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/).
- The Wikipedia article (http://en.wikipedia.org/wiki/C%2B%2B11) provides an overview and short explanations to each feature.
- The GoingNative 2012 conference (http://channel9.msdn.com/Events/GoingNative/GoingNative-2012) contains some videos about C++11, although they don't directly explain the single C++11 features.
- cppreference.com (http://en.cppreference.com/w/cpp) allows you to lookup standard library functionality.
- Several library features have already been in Boost (http://www.boost.org), where you can find more in-depth documentation.
And for specific functionality you probably need to search, I'm sure there are many tutorials and blog posts.
-
Dream in code C++ tutorial forum (http://www.dreamincode.net/forums/forum/48-c-tutorials/)
There are some C++11 tutorials here. Like Nexus said, there are lots of them on the net.
I just found this (http://oopscenities.net/category/programming/) It does not seem in-depth, by the way.
-
I'm only using the null pointer literal and the new <memory> templates.
The rest is a bit beyond me so far.
But you voted Yes? ;)
Yes, I did. :p
-
I'm only using the null pointer literal and the new <memory> templates.
But you voted Yes? ;)
-
Yes yes yes :)
Variadic templates are amazingly powerful and the only way to emulate them pre-C++11 is via generating code with scripts (how boost::function was written....a lot of partial specialisations generated by scripts).
static assertions are rather useful.
Actually having access to a random number generator other than the horrible rand is silly useful.
Rvalues rule.
constexpr rules.
auto is useful for those massive names.
Lambda functions and std::function make everything more flexible.
std::sto... I use but it's hidden behind a templated function that uses a functor to specialise to the correct std::sto, to_string or if all else fails string stream. Kinda like boost::lexical_cast.
Smart pointers..I could go on for awhile actually.
-
Variadic templates are amazingly powerful and the only way to emulate them pre-C++11 is via generating code with scripts (how boost::function was written....a lot of partial specialisations generated by scripts).
Not quite. They can be emulated with preprocessor macros (and they are, at least in Boost.Function).
-
Not quite. They can be emulated with preprocessor macros (and they are, at least in Boost.Function).
I think the actual implementation uses variadic macros but I thought it wrapped them inside a huge set of template specialisations (generated by script) to hide them from the end user since they look silly ugly compared to the very clean implementation variadic templates give you. Macros are the last resort of last resorts in C++ so not having to use them is sweet :)
-
I think the actual implementation uses variadic macros [...]
No, it recursively includes itself. Besides, variadic macros are in fact preprocessor macros, so I'm not sure why you felt the need to mention them. ;)
[...]I thought it wrapped them inside a huge set of template specialisations (generated by script)[...]
That description is somewhat inside out. The macros are used to stamp out the overloads.
The nice macro-free headers you see are generated by the preprocessor (using the Boost.Wave preprocessor, I believe). They are then included to improve compile times (i.e. it has nothing to do with how ugly macros are). In fact, if you redefine the maximum overload arity to some value greater than what is provided by the preprocessed headers (or otherwise disable them), the overloads will be generated on-the-fly (no need for scripts at all).
-
Up until ten minutes ago, I'd been feeling kind of lukewarm towards C++11. I'd been curious, and I expected to take it up sooner or later, but nothing really forced my hand.
Ten minutes ago, I learned that C++11 supports member initialization in the class declaration, ie:
class C
{
public:
int x = 10;
};
I'm turning that compiler flag on, and I'm never going back.
-
huh, interesting. I though the implementation basically did
template<typename T> struct function { };
template<typename R, typename A, typename B> struct function<R (A,B)> : real_function<R, TYPELIST(A,B)>
template<typename R, typename A, typename B,typename C> struct function<R (A,B,C)> : real_function<R, TYPELIST(A,B,C)>
template<typename R, typename A, typename B,typename C,typename D> struct function<R (A,B,C,D)> : real_function<R, TYPELIST(A,B,C,D)>
...
and so-on in that matter for a silly number of implementations. Maybe I'm thinking of Loki or something else but this is definitely a way it can be simulated...
Either way, my point that it's all made infinitely simpler and cleaner looking by variadic templates remains :P
-
Either way, my point that it's all made infinitely simpler and cleaner looking by variadic templates remains :P
It was never in question. ;)
[EDIT]
I didn't see the last part of the following sentence, I'm guessing you added it later:
Maybe I'm thinking of Loki or something else but this is definitely a way it can be simulated...
Not really. The technique you showed has a fixed maximum arity and thus is not variadic, even if the TYPELIST macro is.
[/EDIT]
-
Thanks everyone for the useful links about C++11. I read a lot about it today, and I'm already using it. I jumped on the unordered_map/set, the ranged based for and the "auto" keyword :P
-
Ten minutes ago, I learned that C++11 supports member initialization in the class declaration, ie:
class C
{
public:
int x = 10;
};
:shock:
:D
-
I read about C++11 features a while ago and was amazed with it, started using right away. But so far I only use unordered_map/set, forward_list, the memory library, and some features like "enum class" and RValue references. Lambda expressions is something I want to try sometime but I didn't need it yet. I think I used something from the functional lib once too, that's something I definitely have to look better and start using more often.
-
Does someone already tried to use the std::thread and has some feedback about it ?
-
I think std::thread heavily inspired from boost::thread.
Unfortunately, MSVC 2010 doesn't support it (like many other useful C++11 features :(). However the 2011 version should provide threads, mutexes, atomics, futures etc. :)
-
Too bad we'll have to wait at least a year before we can see the major compilers (GCC, Clang, MSVC) support all the features of the C++11 :-(
-
I've spent the last few days cramming C++11 stuff into my brain. Very exciting. For those who want to get a better understanding of C++11, the following links have been extremely helpful for me:
http://www2.research.att.com/~bs/C++0xFAQ.html
http://channel9.msdn.com/Events/GoingNative/GoingNative-2012
http://en.cppreference.com/w/cpp
http://code.google.com/p/mingw-builds/
In order, they are:
1) The C++11 FAQ written by Stroustrup himself
2) A recent event regarding C++11, lots of videos, VERY informative, if nothing else watch the keynote by Stroustrup on C++11 style
3) A C++ reference which contains some details on the newer C++11 libraries
4) Links to more up-to-date MinGW builds, for windows developers who aren't so fond of VC++. Look for 4.7, it's precompiled and should basically work as-is.
-
Something I feel strage is the naming convention on pointers. unique_ptr, shared_ptr, weak_ptr, ok, all using underscore, then we have nullptr.
-
Something I feel strage is the naming convention on pointers. unique_ptr, shared_ptr, weak_ptr, ok, all using underscore, then we have nullptr.
That's a constant and not a type.
I think it is even a keyword? Or am I wrong?
-
Something I feel strage is the naming convention on pointers. unique_ptr, shared_ptr, weak_ptr, ok, all using underscore, then we have nullptr.
That's a constant and not a type.
I think it is even a keyword? Or am I wrong?
It's a keyword.
-
It's a keyword.
I know, but I still feel it strange:
http://en.cppreference.com/w/cpp/keyword
We have keywords like const_cast and not_eq, and other keywords like constexpr and nullptr. I can somehow understand the difference between the "class" of keywords using '_' and those without, but I don't particularly enjoy it. When I started using smart pointers I always wrote null_ptr by mistake :P
-
Thank you for all the feedback. The majority (86%) seems to use C++11 already or soon, I didn't expect so much interest ;)
Currently I am reflecting about using C++11 in Thor. For the users, this wouldn't change much (they could write std instead of std::tr1). However, internally, many simplifications or even optimizations become possible. The price to pay is a recent compiler like g++ 4.6 or MSVC++ 2010 (which has existed for 2 years already).
What do you think?
-
As long as the features are equally supported by MSVC++ 2010 and g++ it's fine with me. If it's something else like lambdas which is only supported by MSVC++ 2011 I think it's not okay, since MSVC++ 2011 is only on it's beta stage.
-
[...] If it's something else like lambdas which is only supported by MSVC++ 2011 [...].
http://msdn.microsoft.com/en-us/library/dd293608.aspx
Ahem...