CS202   2- ‹#›
Using Objects of this Class
nThink about how you can use those objects
n my_str.copy(“hi!”);
n cout << my_str.length();
n
nWe are limited to using only those operations that are defined within the public section of the class interface nThe only “built-in” operation that can be used with objects of a class is the assignment operation, which does a memberwise copy (as we learned with structures)
n