Sign in
Herb Sutter's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
October 2004
(1)
September 2004
(4)
August 2004
(2)
July 2004
(4)
December 2003
(3)
November 2003
(9)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Herb Sutter's Blog
Simulating try/finally in plain C++ (without the C++/CLI extensions)
Posted
over 9 years ago
by
hsutter
2
Comments
Dan wrote: I think this is close enough to try/finally in C++: Resource* pRes = new Resource; try { // use the allocated resource somehow } catch (...) { delete pRes; throw; } First, note that this code as written doesn't do "finally," because the idea...
Herb Sutter's Blog
Downloading the Express beta compiler
Posted
over 9 years ago
by
hsutter
4
Comments
Mark wrote: I have downloaded the Visual C++ Express and have been trying out simple programs. I have to say C++/CLI is amazingly simple and elegant compared to MC++. You guys rock!!! That reminds me to announce (belatedly): Try out the free Express compiler...
Herb Sutter's Blog
C++/CLI timeline and one-line description
Posted
over 9 years ago
by
hsutter
4
Comments
Ioannis Vranos wrote: There is an upcoming C++/CLI standard (currently draft, official document expected in December 2004) Just a note, we now expect to complete work on the C++/CLI standard in March and have it approved by Ecma in June. We wanted the...
Herb Sutter's Blog
finally + destructors = best of both worlds
Posted
over 9 years ago
by
hsutter
3
Comments
On comp.lang.c++.moderated, "Howard" < alicebt@hotmail.com > wrote: You know how we use try { } catch() {} in C++? Well, both Delphi and C# (which was developed with the aid of one of Delphi's main original developers) have another construct, which...
Page 1 of 1 (4 items)