SFML community forums

General => General discussions => Topic started by: Nexus on March 10, 2012, 01:58:16 pm

Title: Do you use C++11?
Post 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:
And new parts of the standard library, for example:
Title: Do you use C++11?
Post by: unranked86 on March 10, 2012, 02:51:31 pm
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.
Title: Do you use C++11?
Post by: Contadotempo on March 10, 2012, 03:46:50 pm
Not yet, I haven't studied it very well but I'm very interested on the new pointers and smart pointers.
Title: Do you use C++11?
Post by: TheEnigmist on March 10, 2012, 04:00:33 pm
No, but i want to learn it :)
Title: Do you use C++11?
Post by: Tex Killer on March 10, 2012, 04:35:23 pm
No, and I intend to stick with C programming. Gives lower level control.
Title: Do you use C++11?
Post by: Nexus on March 10, 2012, 04:38:29 pm
Quote from: "unranked86"
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...

Quote from: "Tex Killer"
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 ;)
Title: Do you use C++11?
Post by: unranked86 on March 10, 2012, 05:49:22 pm
Quote from: "Nexus"
Quote from: "unranked86"
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:
Quote
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:
Title: Do you use C++11?
Post by: Mjonir on March 10, 2012, 08:04:34 pm
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? :)
Title: Do you use C++11?
Post by: Ceylo on March 10, 2012, 08:28:15 pm
I've sometimes used boost::shared_ptr, boost::function and boost::bind(), but I don't use C++11 to keep a wider compatibility.
Title: Do you use C++11?
Post by: Nexus on March 10, 2012, 08:35:57 pm
unranked86, thanks for the links!


Mjonir, I currently don't know of a single tutorial that covers everything. Some sites that might help you:
And for specific functionality you probably need to search, I'm sure there are many tutorials and blog posts.
Title: Do you use C++11?
Post by: unranked86 on March 10, 2012, 11:24:07 pm
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.
Title: Do you use C++11?
Post by: thePyro_13 on March 11, 2012, 07:38:42 am
I'm only using the null pointer literal and the new <memory> templates.

The rest is a bit beyond me so far.

Quote from: "Nexus"
But you voted Yes? ;)
Yes, I did. :p
Title: Do you use C++11?
Post by: Nexus on March 11, 2012, 09:58:09 am
Quote from: "thePyro_13"
I'm only using the null pointer literal and the new <memory> templates.
But you voted Yes? ;)
Title: Do you use C++11?
Post by: MorleyDev on March 11, 2012, 10:12:29 am
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.
Title: Do you use C++11?
Post by: Lee R on March 11, 2012, 11:02:43 am
Quote from: "MorleyDev"
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).
Title: Do you use C++11?
Post by: MorleyDev on March 11, 2012, 11:12:16 am
Quote from: "Lee R"
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 :)
Title: Do you use C++11?
Post by: Lee R on March 11, 2012, 11:49:54 am
Quote from: "MorleyDev"
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. ;)

Quote from: "MorleyDev"
[...]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).
Title: Do you use C++11?
Post by: VPellen on March 11, 2012, 11:56:10 am
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:

Code: [Select]
class C
{
    public:
        int x = 10;
};


I'm turning that compiler flag on, and I'm never going back.
Title: Do you use C++11?
Post by: MorleyDev on March 11, 2012, 12:07:40 pm
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
Title: Do you use C++11?
Post by: Lee R on March 11, 2012, 12:09:14 pm
Quote from: "MorleyDev"
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:
Quote from: "MorleyDev"

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]
Title: Do you use C++11?
Post by: Mjonir on March 11, 2012, 10:54:22 pm
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
Title: Do you use C++11?
Post by: TechRogue on March 12, 2012, 03:55:40 am
Quote from: "VPellen"

Ten minutes ago, I learned that C++11 supports member initialization in the class declaration, ie:

Code: [Select]
class C
{
    public:
        int x = 10;
};



 :shock:

 :D
Title: Re: Do you use C++11?
Post by: gsaurus on March 12, 2012, 11:45:12 am
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.
Title: Do you use C++11?
Post by: Bigz on March 12, 2012, 05:30:44 pm
Does someone already tried to use the std::thread and has some feedback about it ?
Title: Do you use C++11?
Post by: Nexus on March 12, 2012, 06:35:51 pm
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. :)
Title: Do you use C++11?
Post by: Dalini on March 12, 2012, 11:20:08 pm
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 :-(
Title: Do you use C++11?
Post by: VPellen on March 13, 2012, 11:55:19 am
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.
Title: Do you use C++11?
Post by: gsaurus on March 13, 2012, 01:49:28 pm
Something I feel strage is the naming convention on pointers. unique_ptr, shared_ptr, weak_ptr, ok, all using underscore, then we have nullptr.
Title: Do you use C++11?
Post by: Groogy on March 13, 2012, 02:08:09 pm
Quote from: "gsaurus"
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?
Title: Do you use C++11?
Post by: OniLinkPlus on March 13, 2012, 02:31:36 pm
Quote from: "Groogy"
Quote from: "gsaurus"
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.
Title: Do you use C++11?
Post by: gsaurus on March 13, 2012, 02:52:50 pm
Quote from: "OniLink10"
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
Title: Do you use C++11?
Post by: Nexus on March 17, 2012, 09:21:28 pm
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?
Title: Do you use C++11?
Post by: eXpl0it3r on March 17, 2012, 09:52:35 pm
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.
Title: Do you use C++11?
Post by: Lee R on March 18, 2012, 08:24:05 am
Quote from: "eXpl0it3r"
[...] If it's something else like lambdas which is only supported by MSVC++ 2011 [...].

http://msdn.microsoft.com/en-us/library/dd293608.aspx

Ahem...