|
Six years ago I wrote a short series of aticles about the three Standard C++ features not implemented by Visual C++ 7.1. Interestingly[^] one of these three features is being removed from the standard (keyword export) and another deprecated (exception specifications).
|
|
|
|
|
|
Ever since ATL Server[^] was moved to CodePlex, we have had no native SOAP library from Microsoft. Now, there is Windows Web Services API (WWSAPI)[^] which comes preinstalled on Windows 7 and Windows Server 2008, but can be separatelly installed even on XP.
|
|
|
|
|
I'm about to do a live demonstration on tomorrow's Microsoft Tech Ed about this stuff, along with other features of Win7. I hadn't known that I can separately install it on an XP machine. Thanks for enlightening me.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
A nice and easy to reade article A Brief Introduction to Rvalue References[^] was published at artima.com
What is the deal with rvalue references? They are introduced to enable move semantics, which would avoid many unneeded copies - think factory functions, STL containers, etc.
Another good article on the same topic can be found here[^]
|
|
|
|
|
Your blog has very helpful info.
|
|
|
|
|
Thanks. I wish I had more time to work on it.
|
|
|
|
|
|
The current state of the new C++ 09 Standard is summed up here[^].
The best thing I see is that the Garbage Collector is dropped out
|
|
|
|
|
|
It's been a while, but finally the new version of Boost[^] is out.
Among the new libraries there is Boost.Foreach[^] which enables something like:
std::string hello( "Hello, world!" );
BOOST_FOREACH( char ch, hello )
{
std::cout << ch;
}
Also, there are Boost Statechart[^] for easy coding of finite state machines, Expressive[^], a regex library that enables compile time regexes and Boost.Typeof[^] that offers a library-based alternative to the typeof keyword, planned to be introduced in the next version of the Standard.
As for the library updates, I find the performance optimization of Boost.Function significant - now it doesn't use heap at all in some cases.
|
|
|
|
|
It always astonishes me how I learn something new after all these years of programming with C++.
Say you have a built-in array of C++ string objects:
string s1[3] = {"1", "2", "3"};
Declare the second array of the same type, and try to assign the first array to the second one:
string s2[3];
s2 = s1;
and you'll get a compiler error (C2106 with VC++ 8.0).
OK, we all knew that, right? But what happens if we just wrap it in a class:
struct test {
string s[3];
};
test a = {"1","2","3"};
test b = a;
This works just fine: members of b are copies of the members of a .
This is the result of the standard behavior of default copy constructors:
The implicitly-defined copy constructor for class X performs a member-
wise copy of its subobjects. The order of copying is the same as the
order of initialization of bases and members in a user-defined con-
structor (see _class.base.init_). Each subobject is copied in the
manner appropriate to its type:
--if the subobject is of class type, the copy constructor for the
class is used;
--if the subobject is an array, each element is copied, in the manner
appropriate to the element type;
--if the subobject is of scalar type, the built-in assignment operator
is used.
|
|
|
|
|
I have a question regarding this post.
I was reading at the following url:
http://www.fredosaurus.com/notes-cpp/oop-condestructors/copyconstructors.html[^]
That a copy constructor is only called when initalizing a variable in the declaration. If this is true it seems like the code above declares b, then does b = a which would not call the copy constructor.
I compiled and tested your code and it does work so is the link above wrong or am I missing something.
I agree with you about always learning something new with c++. I'm fairly new to it so finding something to learn is easy but it even seems like once I think I know all there is to know about even a part of the language there is yet more to it. Really interesting and fun.
Thanks.
|
|
|
|
|
yadrif wrote: That a copy constructor is only called when initalizing a variable in the declaration. If this is true it seems like the code above declares b, then does b = a which would not call the copy constructor.
Argh, you are right. My sample should really be:
test b = a;
However, it still works because the same logic applies for the default assignment operator.
Sorry for the confusion
|
|
|
|
|
Many developers are shocked by a drop in performance when upgrading an application that uses STL from VC 2003 to VC 2005. The reason for this is that the MS version of the Standard Library has checked iterators[^]switched on by default even in release mode. To turn this feature off, define _SECURE_SCL to be 0 in your project settings; the performance gain is impressive.
|
|
|
|
|
I was happy to learn that an official proposal for introducing lambda expressions to the next version of the C++ Standard was submitted.
According to that proposal, a lambda expression would look like:
<>(int n)->int {return 2*n;}
That may not be very pretty, but who cares - as long as we don't need to write functors for every for_each operation.
The proposal can be found here[^]
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
|
|
|
|
|
According to Herb Sutter's PDC presentation[^], for each syntax in C++0x will most likely be modeled after Java, and not after C# or C++/CLI. It may be we will write something like:
for each (int i : v) {...}
rather than
for each (int i in v) {...}
Two small remarks from my side:
1. Isn't C++ too expressive already? I know the C++ standard comitee is very reluctant to introduce new keywords, but the price is too often reduced readability.
2. Is C++ now catching up with Java and C#? Of course, with all these millions of existing lines of code written in C++, being conservative is the only way to go, but where is the fine line between the helthy dose of conservativism and becoming obsolete? For instance, C# 3.0 is getting lambda expressions, and it is going to be released probably in a couple of years. The next version of C++, optimistically called C++0x which may or may not include lambda expressions is far from being adopted, and even when it happens, how long will it take for major compiler vendors to implement its features?
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
|
|
|
|
|
Nemanja Trifunovic wrote: Is C++ now catching up with Java and C#?
Nemanja Trifunovic wrote: ut where is the fine line between the helthy dose of conservativism and becoming obsolete?
C++ is already being old, and i don't think the possibly new for each() syntax would "younger" it.
and as you said, yes, C++ is expressive enough to stick with the good'ol' for( ; ; ) ...
TOXCCT >>> GEII power [toxcct][VisualCalc 2.20][VCalc 3.0 soon...]
-- modified at 6:03 Tuesday 31st January, 2006
|
|
|
|
|
|
Pavel Vozenilek wrote: BOOST_FOREACH, a C++ library solution
I know
However, BOOST_FOREACH is not going into C++ 0x.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
|
|
|
|
|
> However, BOOST_FOREACH is not going into C++ 0x.
I'd heard some noises that this library solution (and its horrible complexity inside) may serve as proof of feasability and as s hint of real world need, helping to get "native" construct into the language. If that ever happens it'll be years and years from now, though.
The BOOST_FOREACH works with current compilers (even BCB & VC6).
|
|
|
|
|
One of the language features that are likely to get included into the next version of the standard is type inference. Namely, if the compiler can deduce the type of the variable, we can declare it with keyword auto :
auto i = 1;
Many people confuse type inference with variant types, but it is not the case. In the sample above, i is declared as int , not variant . In other words, it is exactly equivalent to:
int i = 1;
Type inference is also going to be included in C# 3.0, but the choice of the keyword is very unfortunate: var . For instance the same construct:
var i = 1;
means one thing in JavaScript (i is variant ) and another in C# (i is int )
How is this useful? It can save us a lot of typing, and annoying syntax errors. Say we have:
vector<int> v;
vector<int>::iterator b = v.begin();
auto e = v.end();
For more information, see the official proposal document.[^]
|
|
|
|
|
i simply don't like this kind of things...
when a programmer knows what he does, yes, it can be safely hidden and the choice can be let to the compiler, but what i see is that rarely programmers (mostly beginners, but hey, programmers anyway) know exactly what the compiler does with their code (implicit conversions, implicit operators calls, etc...).
if we let the choice to the compiler to choose the most appropriated type to a variable, such as variants, then we will loose the power - i fell - of C++, joining the VB road...
Nemanja Trifunovic wrote: How is this useful? It can save us a lot of typing, and annoying syntax errors. Say we have:
as i was saying, just know what you do while code, and everything should be ok...
moreover, don't auto keyword already mean something specific within the C++ language ?!
TOXCCT >>> GEII power [toxcct][VisualCalc 2.20][VCalc 3.0 soon...]
-- modified at 5:58 Tuesday 31st January, 2006
|
|
|
|
|
toxcct wrote: if we let the choice to the compiler to choose the most appropriated type to a variable, such as variants, then we will loose the power - i fell - of C++, joining the VB road...
But there is a big difference: C++ is still statically typed language, and type inference does not mean variants. If someone makes a mistake about the infered type, he will be greeted by a compiler error. With variants, one would end up with a run-time error, which is much worse.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
|
|
|
|
|
In general, I try to be somewhat conservative when it comes to adopting new technologies in production work. Sure, it is important to stay informed and try all the latest buzz, but for the work that actually brings food to the table I prefer widely adopted and well tested tools.
Having said all that, I spent last couple of days porting the client side of a distributed linguistic application from VC++ 6.0 to VC++ 8.0 (aka VC++ 2005), and the later was released a couple of weeks ago. That was a two-step operation: first I did the port from 6.0 to 7.1 which I know very well, and once it compiled there, another step was from 7.1 to 8.0.
It was somewhat surprising how many errors appeared in the second step. Most of them actually come from unstandard programming practices that originate in VC 6.0, but were tolerated in VC 7.1 (declarations within for loops, wchar_t a typedef for unsigned short,...), but some of them are really surprising. For instance, I found out that some libraries (xalan, crypto++) compile fine in Release mode, but in compile mode they report compile error C2678 somewhere from xutility. The solution is not exactly obvious: adding a preprocessor definition _HAS_ITERATOR_DEBUGGING=0.
All in all, I like VC 2005 so far. The compiler is better, and IDE has some nice new features: Error window, graying out "ifdef-ed" code, Intelisense is better than ever. The interesting question is C++/CLI. Is it going to be adopted among developers? I wish it did, but frankly it would surprise me: C++ developers don't need .NET, and .NET developers don't know what to do with C++.
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
|
|
|
|
|