Home » C++ String operator=() function

C++ String operator=() function

by Online Tutorials Library

C++ String operator=()

This function is used to assign a new value to the string, replacing all the current contents.

Syntax

Consider two strings str1 and str2. Syntax would be:

Parameter

str2 : str2 is a string object, whose value is to be moved.

ch : ch is a character value, whose value is to be moved.

s : s is a pointer to the null terminated sequence of characters.

Return value

It returns *this.

Example 1

Let’s see a simple example.

Output:

Java Programs  

Example 2

Let’s see an another simple example.

Output:

Science is my favorite subject  

Example 3

Let’s see this example.

Output:

C  

Next TopicC++ Strings

You may also like