Advertisement

1 - 10 of 298 containing alltags:("overloaded") (0.001 seconds)
What is Overloading?
Zones: C++Date Answered: 04/27/1998 Grade: D Views: 0
Say is there anything wrong in this code.i want to overload <<. #include <iostream.h> class Boy {  friend iostream& operator << (iostream&,Boy &);  public:Boy(int a) {age=a;}  private:int age; };...
Zones: C++Date Answered: 01/05/1999 Grade: B Views: 0
What's the difference between "override" and "overload"?
Zones: C++Date Answered: 01/25/1999 Grade: A Views: 5
I want to make a modal dialog box take an extra parameter at construction.  How do I do this?  DoModal doesn't take any params...how can I call DoModal and pass in a param?
Zones: Windows MFCDate Answered: 02/03/1999 Grade: A Views: 0
Hi,    I have a friend function in a ListClass that is used to override the "<<" operator. ****.cpp********       ostream& operator<<(ostream& os, const                           ListClass<ItemT...
Zones: C++Date Answered: 07/30/1999 Grade: A Views: 0
typedef enum _VALUETYPE {     _UINT,     _ZSTRING } VALUETYPE; class Field { VALUETYPE v; } class Row { Field f; } Row r; I want to do (_ZSTRING)r.f or (_UINT)r.f What would F...
Zones: C++Date Answered: 05/19/2000 Grade: A Views: 0
How do  I overload the ->* operator? When do I use it?
Zones: C++Date Answered: 11/04/2000 Grade: B Views: 0
Hello - I am working on a project whereas I need to write a set of inline overloaded functions in the header file without making any modifications to the *.cpp file. I have tried everything that I...
Zones: C++Date Answered: 11/29/2000 Grade: C Views: 0
I suppose that the title of this question is not quite clear. But the question will be, or so I hope. For a personal project I need to adjust the title bar, or have my window adjusted. I don't r...
Zones: Visual Basic, VB ObjectsDate Answered: 03/03/2001 Grade: A Views: 4
hi pls i am trying to overload the "+" operator but my program is npot working. #ifndef _CLASS_H_ #define _CLASS_H_ #include<iostream.h> const int MAX_SIZE = 100; class string           ...
Zones: C++, Microsoft Visual C++Date Answered: 03/08/2002 Grade: A Views: 0