Crossware

Table of Contents        Previous topic       Next topic       

C++ COMPILER LIBRARY FUNCTIONS->String Class Functions->Non-Member Functions->Addition

#include <string>

string operator + (const string &lhs,const string &rhs)

Returns a string which is a concatenation of the two arguments.

string operator + (const char *lhs,const string &rhs)

Returns a string which is a concatenation of the two arguments.

string operator + (char lhs,const string &rhs)

Returns a string which is a concatenation of the two arguments.

string operator + (const string &lhs,const char *rhs)

Returns a string which is a concatenation of the two arguments.

string operator + (const string &lhs,char rhs)

Returns a string which is a concatenation of the two arguments.