C/C++
stringcl.asc
Associated article: Proposing a C++ String Class Standard
Tags: C/C++
_PROPOSING A C++ STRING CLASS_
by Steve Teale
[LISTING ONE]
class String {
public:
// String class constants
enum string_enum { all = INT_MAX };
// Constructors / destructor
String(); // make an empty String
String(const String&); // make a String by copying another
String(...


