Javatpoint Logo
Javatpoint Logo

C++ set operator=

There are following three uses of operator= in set:

  1. Operator= is used to assign new content to the set container by replacing its old content (or copy the content) and modifies size if necessary.
  2. Operator= is used to move the content of one set container into another and modifies size if necessary.
  3. Operator= is used to copy the elements from initializer list to set container.

Syntax

copy (1):- Copies all the elements from x into the set container.

move (2):- Moves the content of x into the set container.

initializer_list (3):- Copies the elements of il into the set container.

Parameter

x: A set object with the same type.

il: An initializer list object.

Return value

this pointer.

Complexity

Copy assignment: Linear in sizes.

Move assignment: Linear in current container size.

Initializer list assignment: Up to logarithmic in sizes.

Iterator validity

All references, iterators and pointers related to this set are invalidated.

Data Races

All copied elements are accessed.

The move assignment modifies x.

The set container and all its elements are modified.

Exception Safety

If an exception is thrown, the container is in a valid state.

Example 1

Let's see the simple example to copy the content of one set to another:

Output:

Set s1 contains following elements
10
20
30

After copying the elements from s1 to s2... 

Set s2 contains following elements
10
20
30

In the above example, operator = is used to copy the content of one set s1 to another set s2.

Example 2

Let's see a simple example to move the elements of one set to another:

Output:

Set m1 contains following elements
a, e, i, o, u, 

After moving the elements from s1 to s2?

Set s2 contains following elements
a, e, i, o, u,

In the above example, operator = is used to move the content of one set s1 to another set s2.

Example 3

Let's see a simple example to copy the content from initializer list to set:

Output:

Set contains the following elements
100
200
300
400
500

In the above example, operator = is used to copy the content from initializer list to set m.

Example 4

Let's see a simple example:

Output:

Size Of c1:0
Size Of c2:6

In the above example, there are two sets c1 and c2. c1 has 7 elements and c2 is empty, but after assigning c1 to c2, size of c1 become 0 and size of c2 become 7.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA