Question:
I’ve been working on the + operator in my string class. I came across an interesting dilemma: the following code doesn’t call any of my + operators.For example:
String st1;st1 = "Hello" + "world";
Do I need a special kind of function to handle the type of format? I can get this to work:
String st1("Hello");st1 = st1 + "world";
Answer:
There’s really nothing you can do about this. The problem is that you are adding two char pointers together, which have nothing to do with your class. Only after these are somehow added would your class come into play. It’s exactly the same situation with the string class that comes with Microsoft’s MFC.
The only way to handle this is to change the way the class is used. If you add only one string at a time, it can be done.
st1 = “Hello “;st1 += “world”;Here, each word is added directly to your class and allows your class to control how.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Calix Announces AXOS???, the World???s Most Advanced Operating System for the SDN-enabled Access Network
- CrowdStrike and eSentire expand cybersecurity partnership
- Union Cabinet approves Unified Pension Scheme
- Upcoming FOMC conference meeting: What to know
- Quick and Efficient Way to Get to the Parent Control




















