Tagged Questions
The assignment-operator tag has no wiki summary.
160
votes
2answers
9k views
What is the copy-and-swap idiom?
What is this idiom and when should it be used? Which problems does it solve? Will the idiom change when C++0x is used?
Although it's been mentioned in many places, we didn't have any singular "what ...
95
votes
3answers
7k views
What is The Rule of Three?
What does copying an object mean? What are the copy constructor and the copy assignment operator? When do I need to declare them myself? How can I prevent my objects from being copied?
27
votes
8answers
1k views
What is the motivation for Scala assignment evaluating to Unit rather than the value assigned?
What is the motivation for Scala assignment evaluating to Unit rather than the value assigned?
A common pattern in I/O programming is to do things like this:
while ((bytesRead = in.read(buffer)) != ...
19
votes
5answers
2k views
Assignment operators in R: '=' and '<-'
What are differences in the assignment operators '=' and '<-' in R? I know that operators are slightly different as this example shows
> x <- y <- 5
> x = y = 5
> x = y <- 5
> ...
17
votes
2answers
566 views
Why are there no ||= or &&= operators?
We have equivalent assignment operators for all Logical operators, Shift operators, Additive operators and all Multiplicative operators.
Why did the logical operators get left out?
Is there a good ...
12
votes
4answers
2k views
Checklist for writing copy constuctor and assignment operator in C++
Please write a list of tasks that a copy constructor and assignment operator need to do in C++ to keep exception safety, avoid memory leaks etc.
11
votes
2answers
945 views
Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=)
So for binary operators on booleans, Java has &, |, ^, && and ||.
Let's summarize what they do briefly here:
JLS 15.22.2 Boolean Logical Operators &, ^, and |
JLS 15.23 ...
10
votes
6answers
194 views
reusing the copy-and-swap idiom
I'm trying to put the copy-and-swap idiom into a reusable mixin:
template<typename Derived>
struct copy_and_swap
{
Derived& operator=(Derived copy)
{
Derived* derived = ...
10
votes
7answers
3k views
Why friend function can't be used for overloading assignment operator?
Assignment operator can be overloaded using member function but not friend function.
Sample code is like below.
class Test
{
int a;
public:
Test(int x)
:a(x)
{}
friend ...
8
votes
2answers
110 views
Declaring a reference to object and the assignment operator
I feel like this question is basic enough to be out there somewhere, but I can't seem to be able to find an answer for it.
Suppose I have this code:
//class member function
std::map< std::string, ...
8
votes
7answers
1k views
Is a += b more efficient than a = a + b in C?
I know in some languages the following:
a += b
is more efficient than:
a = a + b
because it removes the need for creating a temporary variable. Is this the case in C? Is it more efficient to use ...
8
votes
6answers
769 views
Is it bad form to call the default assignment operator from the copy constructor?
Consider a class of which copies need to be made. The vast majority of the data elements in the copy must strictly reflect the original, however there are select few elements whose state is not to be ...
7
votes
7answers
480 views
What's the use of the private copy constructor in c++
Why do people define a private copy constructor?
When is making the copy constructor and the assignment operator private a good design?
If there are no members in the class which are pointers or ...
7
votes
4answers
639 views
7
votes
3answers
219 views
What is the difference between Set ( = ) and SetDelayed ( := )?
This discussion came up in a previous question and I'm interested in knowing the difference between the two. Illustration with an example would be nice.
6
votes
2answers
444 views
Assignment operator - Self-assignment
Does the compiler generated assignment operator guard against self assignment?
class T {
int x;
public:
T(int X = 0): x(X) {}
};
int main()
{
T a(1);
a = a;
}
Do I always need to ...
6
votes
6answers
413 views
C++ why the assignment operator should return a const ref in order to avoid (a=b)=c
I am reading a book about C++ and more precisely about the operator overloading.
The example is the following:
const Array &Array::operator=(const Array &right)
{
// check self-assignment
// ...
6
votes
5answers
1k views
Why must the copy assignment operator return a reference/const reference?
In C++, the concept of returning reference from the copy assignment operator is unclear to me. Why can't the copy assignment operator return a copy of the new object? In addition, if I have class A, ...
6
votes
3answers
567 views
compiler generated constructors
This is just a quick question to understand correctly what happens when you create a class with a constructor like this:
class A
{
public:
A() {}
};
I know that no default constructor is ...
6
votes
5answers
6k views
How to use base class's constructors and assignment operator in C++?
I have class B with a set of constructors and an assignment operator.
class B
{
public:
B();
B(const string & s);
B(const B & b){(*this) = b;};
B & operator= (const B & b);
...
5
votes
2answers
101 views
Who coined the term unified (or unifying) assignment operator?
A C++ wiki book refers to
... In C++0x, such an assignment operator is known as a unifying
assignment operator because it eliminates the need to write two
different assignment operators ...
...
5
votes
3answers
180 views
Why would I make copy constructor and assignment operator private and implemented in C++?
Inspired by this question.
Usually the reason to make copy-constructor and assignment operator private is to make the class non-copyable so that objects can only be created and destroyed, but not ...
5
votes
2answers
163 views
How are C array members handled in copy control functions?
This is something I have wondered for a long time. Take the following example:
struct matrix
{
float data[16];
};
I know what the default constructor and destructor do in this specific example ...
5
votes
6answers
270 views
const member and assigment operator. How to avoid the UB?
I answered the question about std::vector of objects and const-correctness and got undeserved downvote and a comment about UB. I do not agree and therefore I have a question.
Consider the class with ...
5
votes
1answer
192 views
Are `=` and `<-` exactly the same in R? [closed]
Possible Duplicate:
Assignment operators in R: ‘=’ and ‘<-’
Is it just a style preference?
As far as I can tell, they are the same.
I see many people prefer the ...
5
votes
9answers
1k views
Overloading assignment operator in C++
As I've understand, when overloading operator=, the return value should should be a non-const reference.
A& A::operator=( const A& )
{
// check for self-assignment, do assignment
return ...
5
votes
5answers
2k views
Default assignment operator in inner class with reference members
I've run into an issue I don't understand and I was hoping someone here might provide some insight. The simplified code is as follows (original code was a custom queue/queue-iterator implementation):
...
5
votes
3answers
1k views
Reference assignment operator in php =&
I am having a hard time determining what the =& (equals-ampersand) assignment operator does in PHP. Can anyone explain it? Is it deprecated? Thanks!
4
votes
7answers
172 views
Need of privatizing assignment operator in a Singleton class
Can someone justify the need of privatizing the assignment operator in a Singleton class implementation?
What problem does it solve by making Singleton& operator=(Singleton const&); private?
...
4
votes
5answers
302 views
Assignment operator and copy constructor in the presence of references
I am just experimenting with the references using this code:
class A
{
};
class B
{
public:
B(A& a): m_a(a){}
A& m_a;
};
int main()
{
A a;
B b(a);
B b1 = b;
}
I was ...
4
votes
6answers
121 views
What constructor or operator is used in a return (C++)
I run this code for experimenting copy constructor and assignment operator
class AClass {
private:
int a;
public:
AClass (int a_) : a(a_) {
cout << " ...
4
votes
5answers
153 views
c# Assignment operator &=
if I have the following bool:
bool success = true;
Will the following three lines of code store the same results in success:
1 - success &= SomeFunctionReturningABool();
2 - success = success ...
4
votes
4answers
426 views
Copy constructor, destructor and assignment operator. When don't we need them all?
I know the C++ rule of thumb when you add cctor, dtor or op= to your class, you need to add the other two too to make you class work properly under all circumstances.
Are there any case when you ...
4
votes
2answers
136 views
Overloading operator= as Non-Member
According to replies to this thread, operator= cannot be overloaded as a non-member function. So, for example, the following makes the compiler very angry:
class MyClass
{
// ...
};
...
4
votes
5answers
478 views
The copy constructor and assignment operator
If I override operator= will the copy constructor automatically use the new operator? Similarly, if I define a copy constructor, will operator= automatically 'inherit' the behavior from the copy ...
4
votes
2answers
193 views
In Objective C, is there a difference between if (object == nil) and if (nil == object)?
I would lean towards
if (object == nil)
but I've noticed in some tutorials the use of
if (nil == object)
Is this just a style thing, or is there some justified rationale for using either format?
...
4
votes
3answers
178 views
Why would the assignment operator ever do something different than its matching constructor?
I was reading some boost code, and came across this:
inline sparse_vector &assign_temporary(sparse_vector &v) {
swap(v);
return *this;
}
template<class AE>
inline ...
4
votes
5answers
2k views
Shortcut “or-assignment” (|=) operator in Java
I have a long set of comparisons to do in Java, and I'd like to know if one or more of them come out as true. The string of comparisons was long and difficult to read, so I broke it up for ...
4
votes
2answers
1k views
What's the difference between `=` and `<-` in R?
I'm using R 2.8.1 and it is possible to use both = and <- as variable assignment operators. What's the difference between them? Which one should I use?
4
votes
5answers
2k views
C# += (plus equals) (Assignment by addition) working very slow, when string is too long?
I have a for loop and what I do is this.
forloop ( loop 7000 times)
{
x += 2000_char_long_string;
}
Code lasts really long time in this forloop, maybe more than 1 minute. How can I solve this ...
3
votes
2answers
85 views
C++ Assignment Constructor
If I have two classes A and B and I do A=B which assignment constructor is called? The one from class A or the one from class B?
3
votes
1answer
148 views
When does the compiler provide definitions for the special members of a class?
I know that when I define an empty class and provide no declarations at all, the compiler will provide definitions for the default and copy constructor, destructor and copy assignment operator.
What ...
3
votes
4answers
45 views
overloading assignment operators when the class is a child
How do you set base class members using the assignment operator implementation? If for example someone defines the assignment operator in a derived class like this:
(where both colour and Colour() ...
3
votes
1answer
75 views
derived class's virtual assignment operator not being called
I'm pretty new to C++, and am trying to come to grips with virtual assignment. The program below consists of an abstract base class with two data members, and a derived class with one. When I set an ...
3
votes
2answers
91 views
“deleting” copy ctor/assignment in C++11
In VS 2010 SP1, the following:
class Foo
{
public:
Foo() { }
Foo(Foo const&) = delete; // Line 365
Foo& operator=(Foo const&) = delete; // Line 366
};
does not compile. It ...
3
votes
4answers
111 views
How do I create a class that can initialize C++ data types?
The title basically says it all. I mainly want to do this so that I can create an object (say, a custom string object) that can initialize the parameters of other functions in other APIs. Here's an ...
3
votes
5answers
142 views
php: $a=$b OR $a=$c vs. ternary
I need to assign one of two variables to a third variable, using the value of the second variable if the first is (bool)false or undefined.
I usually do this using ternary notation like so:
$foobar ...
3
votes
3answers
291 views
C++ stl vector for classes with private copy constructor?
There is a class in our code, say class C. I want to create a vector of objects of class C. However, both the copy constructor and assignment operator are purposely declared to be private. I don't ...
3
votes
1answer
118 views
bash operator for logical defined-or
Is there an equivalent Bash operator to Perl's logical defined-or? Something akin to:
$a = $a // $b;
OR
$a ||= $b;
3
votes
2answers
613 views
Template assignment operator overloading mystery
I have a simple struct Wrapper, distinguished by two templated assignment operator overloads:
template<typename T>
struct Wrapper {
Wrapper() {}
template <typename U>
Wrapper ...