Click here to Skip to main content
15,895,084 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Text exchange VB 16 bit / VC 32 Pin
Milton Karimbekallil6-May-06 5:47
Milton Karimbekallil6-May-06 5:47 
GeneralRe: Text exchange VB 16 bit / VC 32 Pin
Dihirk6-May-06 22:55
Dihirk6-May-06 22:55 
GeneralRe: Text exchange VB 16 bit / VC 32 Pin
Dihirk7-May-06 2:47
Dihirk7-May-06 2:47 
GeneralRe: Text exchange VB 16 bit / VC 32 Pin
Maxwell Chen7-May-06 2:53
Maxwell Chen7-May-06 2:53 
GeneralRe: Text exchange VB 16 bit / VC 32 Pin
Dihirk7-May-06 3:11
Dihirk7-May-06 3:11 
QuestionClass Bascis Question... Pin
HakunaMatada6-May-06 1:55
HakunaMatada6-May-06 1:55 
AnswerRe: Class Bascis Question... Pin
Cedric Moonen6-May-06 2:03
Cedric Moonen6-May-06 2:03 
GeneralRe: Class Bascis Question... Pin
Stephen Hewitt6-May-06 2:44
Stephen Hewitt6-May-06 2:44 
This is not a reason to use or not use new - You can still treat a object on the stack polymorphically. For example the following does:

class Base
{
public:
	virtual void Message() const = 0;
};
 
class Derived1
{
public:
	virtual void Message() const
	{
		cout << "Hello from Derived1" << endl;
	}
};
 
class Derived2
{
public:
	virtual void Message() const
	{
		cout << "Hello from Derived2" << endl;
	}
};
 
void PrintMessage(const Base &b)
{
	b.Message();
}
 
void Driver()
{
	CDerived1 d1;
	CDerived2 d2;

	PrintMessage(d1);
	PrintMessage(d2);
}


In this example PrintMessage exhibits polymorphic behaviour but there are no news.

Steve
AnswerRe: Class Bascis Question... Pin
Stephen Hewitt6-May-06 2:34
Stephen Hewitt6-May-06 2:34 
GeneralRe: Class Bascis Question... Pin
HakunaMatada6-May-06 2:51
HakunaMatada6-May-06 2:51 
GeneralRe: Class Bascis Question... Pin
Stephen Hewitt6-May-06 2:55
Stephen Hewitt6-May-06 2:55 
GeneralRe: Class Bascis Question... Pin
led mike6-May-06 6:11
led mike6-May-06 6:11 
AnswerRe: Class Bascis Question... Pin
Maxwell Chen6-May-06 3:31
Maxwell Chen6-May-06 3:31 
GeneralRe: Class Bascis Question... Pin
Stephen Hewitt6-May-06 3:54
Stephen Hewitt6-May-06 3:54 
GeneralRe: Class Bascis Question... Pin
Axter6-May-06 16:43
professionalAxter6-May-06 16:43 
GeneralRe: Class Bascis Question... Pin
Stephen Hewitt6-May-06 18:32
Stephen Hewitt6-May-06 18:32 
GeneralRe: Class Bascis Question... Pin
Maxwell Chen6-May-06 19:16
Maxwell Chen6-May-06 19:16 
GeneralRe: Class Bascis Question... Pin
Phil C6-May-06 20:12
Phil C6-May-06 20:12 
AnswerRe: Class Bascis Question... Pin
Maxwell Chen6-May-06 20:44
Maxwell Chen6-May-06 20:44 
GeneralRe: Class Bascis Question... Pin
Axter7-May-06 1:05
professionalAxter7-May-06 1:05 
GeneralRe: Class Bascis Question... Pin
Maxwell Chen7-May-06 2:02
Maxwell Chen7-May-06 2:02 
GeneralRe: Class Bascis Question... Pin
Axter7-May-06 5:53
professionalAxter7-May-06 5:53 
GeneralRe: Class Bascis Question... Pin
Maxwell Chen7-May-06 6:22
Maxwell Chen7-May-06 6:22 
GeneralRe: Class Bascis Question... Pin
Axter7-May-06 1:20
professionalAxter7-May-06 1:20 
QuestionRe: Class Bascis Question... Pin
Maxwell Chen7-May-06 2:08
Maxwell Chen7-May-06 2:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.