Since 6/1/2012 6:14:20 AM, chris.becke has written 7 articles and participated in 25 conversations. chris.becke signature: chris.becke
chris.becke's articles:
Items(7) /1
I wish I could make my own keywords #3134 (9/17/2009 7:24:18 AM) comp.lang.c++ Think for a moment about the compiler checking const correctness adds. Then, imagine a c++ with a syntax where we could create our own 'const' like qualifier keywords. In a multi threaded development environ... Chris
I wish I could make my own keywords #2227 (9/11/2009 3:04:09 PM) comp.lang.c++ Think for a moment about the compiler checking const correctness adds. Then, imagine a c++ with a syntax where we could create our own 'const' like qualifier keywords. In a multi threaded development environ... Chris
I wish I could make my own keywords522 (9/11/2009 3:02:57 PM) comp.lang.c++ Think for a moment about the compiler checking const correctness adds. Then, imagine a c++ with a syntax where we could create our own 'const' like qualifier keywords. In a multi threaded development environ... Chris
stupid void**1021 (11/12/2008 9:21:42 AM) comp.lang.c++ In C and in older C++ compilers, you could write code like this void a(void** pp); // declare a function that takes a pointer to a = pointer-to-void. struct I {}; // some struct. I *i1,**i2; // some kind... Chris
integer overflow detection would be a nice addition.624 (10/15/2008 2:05:56 PM) comp.lang.c++ I *know* my CPU has opcodes that can do this - when adding (or = subtracting) there is a carry flag that can be invoked to make the = result essentially 1 bit longer than the data size used in calculations. Whe... Chris
I wish c++ did interfaces better.2627 (8/6/2008 8:53:36 AM) comp.lang.c++ Given an interface (in the c++ sense, nothing more than a struct = containing pure virtual methods) struct Iv1 { virtual method0()=3D0; }; And a class that implements the interface class Iv1Impl : pu... Chris
. as an alternative to m_3831 (8/5/2008 2:25:11 PM) comp.lang.c++ I know this isn't the place for suggestions, but I just need to vent. Why dont c++ compilers let us use . as way of saying "this->", and hence an alternative for m_ struct foo { int a; void bar(int a){ ... Chris
I wish c++ did interfaces better.2627 (8/6/2008 8:53:36 AM) comp.lang.c++ Given an interface (in the c++ sense, nothing more than a struct = containing pure virtual methods) struct Iv1 { virtual method0()=3D0; }; And a class that implements the interface class Iv1Impl : pu... chris.becke(32)
Style question - using LPCTSTR as a pointer524 (8/9/2008 4:14:28 PM) comp.lang.c++ I'm using a system in which TCHAR is typedef-ed to represent a character, in this case a wchar_t to hold Unicode characters, and LPCTSTR is typedef-ed to be a pointer to constant wchar_t. I presume it's suppose... gw7rib(463)
Thread Pool versus Dedicated Threads2320 (8/14/2008 6:20:01 AM) comp.lang.c++ Hi all, Recently I had a new coworker. There is some dispute between us. The last company he worked for has a special networking programming model. They split the business logic into different modules, and ... newptcai(46)
converting from windows wchar_t to linux wchar_t525 (8/14/2008 3:13:19 PM) comp.lang.c++ Hello experts, I am dealing now in porting our server from windows to linux. our client is running only on windows machine. to avoid the wchar_t size problem ( in windows its 2 bytes and linux is 4 bytes ) we d... yakir22(2)
unsupported function problem - WinCE533 (10/2/2008 2:51:59 PM) comp.lang.c++ Hello all, I'm trying to run a small program on both PPC and CE devices. I am calling SHGetAutoRunPath only when running on a PPC platform. However, since this function depends on aygshell.dl, which doesn't ex... yoavrofe(2)
Interfaces in C++ #23021 (10/6/2008 6:44:05 PM) comp.lang.c++ If I declare a function pure virtual: class A { virtual void myfunc() = 0; } and I derive a class from A: class B : public A { void anotherfunc(); } when I compile this program, the compiler doesn't... uh5d(29)
stupid void**1021 (11/12/2008 9:21:42 AM) comp.lang.c++ In C and in older C++ compilers, you could write code like this void a(void** pp); // declare a function that takes a pointer to a = pointer-to-void. struct I {}; // some struct. I *i1,**i2; // some kind... chris.becke(32)