ahodgson@athena.mit.edu (Antony Hodgson) (03/30/91)
Can 'new' be used to allocate memory on the far heap using the medium or small memory models? If so, how does one do it? Tony Hodgson ahodgson@hstbme.mit.edu
bright@nazgul.UUCP (Walter Bright) (04/11/91)
In article <1991Mar29.200057.1145@athena.mit.edu> ahodgson@athena.mit.edu (Antony Hodgson) writes:
/Can 'new' be used to allocate memory on the far heap using the medium
/or small memory models? If so, how does one do it?
If that is possible, then operator new would have to be overloadable based
on its return type rather than the type of its arguments (it would return
a far pointer rather than a near, but the arguments wouldn't change!).
Basically, C++ is designed around the idea that there is only one pointer
type possible for the 'this' pointer. Introducing ways to have different
this pointer types in the same program produces all kinds of problems...