Sign in
I Love that New Syntax Smell
C++ articles, code snippets, musings, etc. from Andy RichIf this is your first time here, you may want to check out my blog introduction.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
A day in the life
articles
errata
et cetera
musings
post responses
snippets
Windows Forms
Archive
Archives
June 2006
(1)
August 2005
(1)
June 2005
(1)
January 2005
(1)
November 2004
(1)
October 2004
(1)
September 2004
(4)
August 2004
(3)
July 2004
(2)
June 2004
(3)
April 2004
(1)
March 2004
(2)
February 2004
(1)
January 2004
(6)
December 2003
(18)
November 2003
(9)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
I Love that New Syntax Smell
Corrections, explanations, etc.
Posted
over 10 years ago
by
arich
2
Comments
First, I should apologize for the lack of postings lately. A combination of server downtime/outages and apathy have kept me from making postings. Now that we're back up, I think I should clarify some of what I've said. Value types aren...
I Love that New Syntax Smell
PtrToStringChars v2 remix
Posted
over 10 years ago
by
arich
1
Comments
A while back, in order to get some code to compile, I had to update PtrToStringChars (found in vcclr.h) to work in the new Whidbey C++. In case anyone wants this, I've posted my implementation (and a small main() to drive it) here: p2sc.zip . ...
I Love that New Syntax Smell
Branbray on handles
Posted
over 10 years ago
by
arich
3
Comments
I was going to give a short introduction to the C++ handle (^) today. But, Brandon did such a good job, I think I'll just link to his article .
I Love that New Syntax Smell
Simple stack code
Posted
over 10 years ago
by
arich
12
Comments
We've got a code sample today, of a simple integer stack implemented using Whidbey C++. I'll implement it using three pieces of code: stack.h - definition of the stack stack.cpp - implementation of the stack main.cpp - driver...
I Love that New Syntax Smell
The value type
Posted
over 10 years ago
by
arich
3
Comments
Last time, I discussed the ref type . This time, I'm going to talk about the value type. This is the CLR type exposed in Managed Extensions by the __value keyword, and available in Whidbey C++ using the context-sensitive keyword value...
I Love that New Syntax Smell
The ref type
Posted
over 10 years ago
by
arich
1
Comments
There are two major CLR types that we expose in Whidbey: ref and value . I'll talk about ref types here, and about value types later. So, what is a ref type? This is the same type that was exposed in Managed Extensions as __gc . ...
I Love that New Syntax Smell
Context-sensitive keywords
Posted
over 10 years ago
by
arich
1
Comments
If you've used Managed Extensions, you're familiar with the CLR types that __gc and __value exposed. These have now been replaced with the context-sensitive keywords ref and value . Context-sensitive keywords? That's right. ...
I Love that New Syntax Smell
That crazy GC Heap
Posted
over 10 years ago
by
arich
1
Comments
...or, "Hey! My data ain't garbage!"...
I Love that New Syntax Smell
Introduction
Posted
over 10 years ago
by
arich
2
Comments
...or, "Do we really need another blog?"...
Page 1 of 1 (9 items)