Forum: C++ Aug 23rd, 2005 |
| Replies: 4 Views: 1,717 Sorry guys did not post the questions....
I was trying to implement a String class similar to the one in Java in C++...Also i have used the bloodshe dev c++ compiler 4.0
I have a few questions... |
Forum: C++ Aug 23rd, 2005 |
| Replies: 4 Views: 1,717 class String
{
char* pData;
public:
String(); //default constructor
~String(); //default destructor
... |