Search code examples
Do you always have to define a copy assignment operator when a copy constructor is defined?...

c++copy-constructorassignment-operatorrule-of-three

Read More
When assigning A=B, does this call A's or B's assignment operator?...

c++copy-constructorassignment-operator

Read More
Why are the conditions for an implicitly-defined move constructor/assignment operator different than...

c++c++11constructorlanguage-designassignment-operator

Read More
Are there drawbacks to calling the assignment operator in the copy constructor?...

c++copy-constructorassignment-operator

Read More
How to make operator= accept derivatives of parameter like operator+?...

c++polymorphismoperator-overloadingassignment-operatoroverload-resolution

Read More
x = x*0.90; gives lossy conversion error. x*=0.90; does not. Why?...

javaintegerdoublemultiplicationassignment-operator

Read More
Do constructors do the same thing as the '=' operator?...

c++oopconstructoroperator-overloadingassignment-operator

Read More
Constructor or Assignment Operator...

c++copy-constructorassignment-operator

Read More
Why are we allowed to change values of "const" qualified variables?Why pointers are allowe...

cpointersconstantsassignment-operator

Read More
How to overload assign operator for record in Delphi...

delphioperator-overloadingassignment-operator

Read More
What is the copy-and-swap idiom?...

c++copy-constructorassignment-operatorc++-faqcopy-and-swap

Read More
Differences in Assigning to Temporaries for User-Defined vs Built-in Types in C++...

c++assignment-operator

Read More
What is the return type of the built-in assignment operator?...

c++referenceassignment-operatordereferencelvalue

Read More
Is there a difference between `string s("hello");` and `string s = "hello";`...

c++initializationvariable-assignmentcopy-constructorassignment-operator

Read More
Directly assigning to a std::vector after reserving does not throw error but does not increase vecto...

c++11stdvectorassignment-operator

Read More
Why are there no ||= or &&= operators in C#?...

c#operatorslanguage-designassignment-operatorcompound-assignment

Read More
Assignment operator += usage with earlier declared vs declared variable?...

cassignment-operator

Read More
Copy semantics and vectors...

c++copy-constructordeep-copyassignment-operator

Read More
Why can't the compiler find the assignment operator?...

c++assignment-operator

Read More
What's the difference or when should I apply ":" vs "=" in Python?...

pythonassignment-operator

Read More
JavaScript Operator Precedence, Assignment, and Increment?...

javascriptoperator-precedenceassignment-operatororder-of-executionprefix-operator

Read More
How are C declarations actually parsed, based on this interesting discrepancy?...

cparsinginitializationlanguage-lawyerassignment-operator

Read More
In Java, does (a == (a = b)) produce undefined behaviour?...

javavariable-assignmentassignment-operator

Read More
data.table objects assigned with := from within function not printed...

rfunctiondata.tableassignment-operator

Read More
Usage of '+=' in c...

coperatorsassignment-operatorpre-increment

Read More
Why does setting an element of a map to its size increments the size *before* assigning it?...

c++dictionaryassignment-operator

Read More
Is the use of conversion operator forbidden for the lhs of user-defined operator= for user-defined t...

c++language-lawyerc++20assignment-operatorconversion-operator

Read More
How to overloading operator= in red-black tree? C++...

c++assignment-operatorred-black-tree

Read More
What is the difference using the operators `+=` vs `=+` in Java?...

javaoperatorsassignment-operator

Read More
Inheriting operator= and constructor but also add an extra wrapper assignment...

c++inheritanceassignment-operator

Read More
BackNext