class String {

public:

size_t length() { return m_length; }


private:

size_t m_length;

};