The operator used when one object is assigned to another

learn more… | top users | synonyms

2
votes
1answer
64 views

How to correctly write an assignment operator for a derived class

Answers to other questions say this is how to write assignment for a derived class: class D : public B { public: D& operator=(const D& other) { B::operator=(other); // ...
0
votes
1answer
30 views

C++ Deleting Private Array in Copy Constructor and Assignment operator

I'm trying to implement a container that allocated memory to the heap, but it seems as though my base constructor and my argument constructor don't like each other. Below, I've posted the code without ...
0
votes
1answer
42 views

assignments operator between father and son

I have the next classes. in the main I have 2 kinds of assignments operator (A=A and B=B). I'm trying to get the main working, so I tried: class A { // assume that this class is abstract public: ...
0
votes
1answer
61 views

Copy Constructor not being called when returning by value : C++

Consider a Class: class loc{ int x; int y; public: loc(); loc(int x,int y); loc(const loc& l);//Copy Constructor loc operator + (const loc& l); loc operator - ...
1
vote
4answers
56 views

What is the result of an assignment expression in C?

In the following code: int c; while((c=10)>0) What does c = 10 evaluate to? Is it 1 which indicates that the value 10 is assigned to variable c successfully, or is it 10? Why?
0
votes
2answers
69 views

Why are we allowed to change values of “const” qualified variables?Why pointers are allowed for this,but not assignment?

Consider the following 2 programs prog1 and prog2.Here if I try to change the value of the const qualified variable i using a pointer ptr,I get the warning( not error) "initialization discards ...
1
vote
2answers
55 views

Assign to base class part of the object only

When class D is derived from class B, how do I assign to the B part of it only? In C++, I would do: D d; B b; d.B::operator = (b); What is the C# equivalent of this?
0
votes
2answers
87 views

How do I write move constructor and assignment operator for a class which has a private object as property?

I learned Move Constructors today. I read this answer, and I tried to apply the move constructor example in it to my code. class UnicodeString { public: enum ENDIANNESS_TYPE ...
1
vote
1answer
65 views

why do I need both constructor and assignment operator here?

My code doesn't compile when one of these is omitted. I thought only copy assignment operator is required here in main(). Where is constructor needed too? #include <iostream> #include ...
0
votes
2answers
67 views

Assignment Operator for an object

I have written a code, for dynamically allocating a name. I know I should take care of deep copy in such scenarios. What I have written is my own version of Copy Constructor,Copy Assignment Operator ...
0
votes
3answers
35 views

Doubts in a code to test the use of assignment operator

I am writing a code to test the use of assignment operator and copy constructor. The code is as follows: #include <iostream> #include <algorithm> using namespace std; class fun { int ...
5
votes
2answers
85 views

Short hand assignment operator, +=, True Meaning?

I learnt that i+=2 is the short-hand of i=i+2. But now am doubting it. For the following code, the above knowledge holds no good: byte b=0; b=b+2; //Error:Required byte, Found int The ...
3
votes
1answer
52 views

Unary Operations fused with assignment

Doubtful result in the following code: public static void main (String[] args) { int i = 2; i = i+=2 + i++; System.out.println(i); } Was expecting 8 as output, as 'i+=2' should update i, but its ...
0
votes
1answer
46 views

C++ Copy Constructor and Assignment Operator Define

C++ Copy Constructor and Assignment Operator Define Could anybody help me correct the following copy constructor and assignment operator? as you see, assignment operator seems to work well; I ran ...
1
vote
3answers
106 views

How to have const members in stl container values in C++?

I like to make my C++ member variables const if they should not be changed once the object is constructed, however, sometimes they need to be modified by STL. For example, if I have a vector of my ...
1
vote
1answer
13 views

Required AssignmentOperators in try/catch

I have a class in a Java project which contains a 2D array of values and provides useful methods for interacting with it. It uses Location objects (which just store two values) to access points in the ...
-1
votes
1answer
90 views

Rule of Three. Copy Constructor, Assignment Operator Implementation [closed]

Rule of Three. Copy Constructor, Assignment Operator Implementation #include <iostream> using namespace std; class IntPart { public: IntPart(); // default constructor IntPart(int n); ...
0
votes
4answers
80 views

Memory Management : arrays and dynamic allocation with new operator

Memory Management : arrays and dynamic allocation with new operator Q. In terms of Memory Management, what error does occur? class String { public: String(const char right[]); String& ...
5
votes
5answers
102 views

Constructor/Destructor call order on stack

I have the following simple code: class A { int a; public: A(int a) : a(a) { cout << "Constructor a=" << a << endl; } ~A() { cout << "Destructor a=" ...
0
votes
1answer
65 views

Segmentation fault when assigning value in double pointer

I have a double pointer that I am using to create an array of linked lists. Basically I am trying to take the data from my "cities" that is already in an array, and assign these cities in my "row" ...
2
votes
5answers
77 views

Value returned by the assignment

Why does the regular assignment statement (say, x = 5) return the value assigned (5 in this case), while the assignment combined with a variable declaration (var x = 5) returns undefined? I got the ...
0
votes
2answers
48 views

Force C++ class instances to change member value when copied or assigned

I have a class named Solution defined as below. I have only included the relevant code, and I have not written a custom copy or assignment operator. class Solution { public: Solution() { ...
-2
votes
2answers
57 views

explanation for the code snippet in C [duplicate]

I came across this code snippet somewhere but cannot understand how does it works: #include"stdio.h" int main() { int j = 1; + j += + j += + j++; printf("%d",j); return 0; } Output: 6 ...
1
vote
7answers
182 views

Overloading the C++ assignment operator

I want to extend the std::string with some functionality, so I derive my String from it. In order to make code like String str = stdStr; work, I've tried to overload the assignment operator, but my ...
5
votes
3answers
184 views

C++ function returns a rvalue, but that can be assigned a new value?

The code is as follows: #include <iostream> using namespace std; class A { }; A rtByValue() { return A(); } void passByRef(A &aRef) { // do nothing } int main() { A ...
3
votes
2answers
87 views

Assigning base class members in copy assignment operator

I've got a class that inherits from a MSFT class, and therefore cannot be changed, and I'd like my derived class to have identical behavior for its copy constructor and copy assignment operator. The ...
2
votes
1answer
111 views

How does the assignment operator (=) in Perl work internally?

Suppose num is an array, @num = (1 .. 10); To find its length we use the following expression, $num = @num; Then I used the same $num in the assignment below. @slicenum = $num[1 .. 6]; I was ...
1
vote
1answer
77 views

Why doesn't this vector assignment work?

Similar Questions: STL vector reserve() and copy() std::vector reserve() and push_back() is faster than resize() and array index, why? std::vector::resize() vs. std::vector::reserve() #include ...
1
vote
1answer
65 views

What ctor/assignment operator should a vector class have?

I'm writing my own vector class (a container for x, y values) and I'm not really sure what constructors/assignment operators I should implement on my own and what I can count on the compiler to ...
0
votes
2answers
17 views

Need to know whats happening in this code exactly

I am little confused with this code $name = $formData["name"] = stripslashes($mechanic_buy_name); I found these code being used in one of the script downloaded from internet. I need to know what is ...
-3
votes
2answers
63 views

Shortening bitwise equations

Similar to how plus and minus can be shortened thusly: $x = $x + 5; becomes $x += 5; Can you do a similar thing with bitwise operators? For example when applying XOR would the following be ...
1
vote
1answer
108 views

Dynamic array deallocation (assignment operator vs. copy constructor)

Should i deallocate dynamic array (allocated in constructor) in copy constructor and/or assignment operator? struct Test { const size_t n; int* xs; Test(const size_t n) : n(n) , xs(new ...
3
votes
4answers
80 views

Overloading assignment operator without return statement

Why does the assignment operator is allowed to return void? And why does assignment chaining works in this case? Take a look at the code, it will be very clear what am I talking about. Code: struct ...
0
votes
1answer
98 views

What is wrong with my solution? [closed]

This is translation from my native language. You have a class: class Boo : public SuperBoo { Foo* fFoo1; Foo* fFoo2; } Where Foo - monomorphic class and Boo owns pointers fFoo1, fFoo2. ...
0
votes
2answers
59 views

derived assignment operator calling the one from a base

In the best rated answer to the question from this link, I don't understand how the derived assignment operator calls the assignment operator from the base class, i.e., this in this part of the code: ...
1
vote
1answer
69 views

Java Assignments

I'm studying for an exam, and I'm looking through a sample program and I am confused. Here is the code: public class Problem1 { public static void f(A X) { A Y = X; Y.key = X.key + 1; } ...
0
votes
3answers
85 views

why assignment operators return non boolean value

I tested result this javascript expressions in chrome browser console (output result is bold): a = false false b = false false a||b false a|=b 0 why in the last expression (a|=b) does not return a ...
1
vote
5answers
160 views

Best way to overload the C++ assignment operator

I have a class A which dynamically allocates memory for an integer(pointed by a class memeber say _pPtrMem) in its constructor and deallocates the same in destructor. To avoid Shallow copy, I have ...
0
votes
3answers
139 views

Copy Constructor and Assignment Operator Issues

I am creating a binary linked list for a homework assignment that stores only the degrees of the 1 bits. I can get the highest degree, set bits anywhere in the binary list, and return which bit occurs ...
0
votes
4answers
92 views

what is return type of assignment operator?

I am just starting C++. All is fine except that I am confused on the return type of assignment and dereference operator. I am following the book C++ Primer. At various occasions, the author says that ...
0
votes
1answer
46 views

What does the => operator do in the arguments of a foreach loop in PHP? [duplicate]

another clear n00b question: In the following snippet of code (that works fine), what does the '=>' operator do? I thought it was for creating associative arrays. Is that going on here? Any ...
0
votes
3answers
137 views

Assigning many variables in a single code line C#

I'm not sure of what the operation is called that I want to do in C#, but I know it can be done in other languages. Suppose I have three vars and set them to the same value: MyObject Ob1 = new ...
-1
votes
1answer
96 views

functions that don't automatically inherit in c++ [closed]

class GameBoard { public: GameBoard() { cout << "GameBoard()\n"; } GameBoard(const GameBoard&) { cout << "GameBoard(const GameBoard&)\n"; } GameBoard& ...
4
votes
3answers
154 views

copy constructor of a class which has an user-defined class member

I'm reading thinking in c++ chapter 14 : "Functions that don't automatically inherit" class GameBoard { public: GameBoard() { cout << "GameBoard()\n"; } GameBoard(const GameBoard&) { ...
5
votes
2answers
132 views

Boolean and String Overloads of the Assignment Operator (C++)

I am defining multiple overloads of the assignment operator as follows: Foo.h class Foo { private: bool my_bool; int my_int; std::string my_string; public: Foo& operator= (bool ...
0
votes
3answers
111 views

how to properly use the copy constructor and assignment in c++ class

I have written copy constructor for the pointer data member for one of my class class person { public: string name; int number; }; class MyClass { int x; char c; std::string s; ...
-2
votes
1answer
26 views

Random values combined with assignment/combinator operator

Does the following code sample create two random values, or does it re-use the first one? Random r = new Random(); int[] a = new int[10]; a[r.nextInt(10)] += 1; // Equals this, creating two random ...
0
votes
1answer
62 views

Missing “”AssignmentOperator Expression" in abstract class?

For the following code: private double currentTime; private Queue<ScheduledEvent<S>> diary; public Simulation() { diary = new PriorityQueue<ScheduledEvent<S>>; } within ...
-1
votes
6answers
147 views

Purpose of assignment operator overloading in C++

I'm trying to understand the purpose of overloading some operators in C++. Conceptually, an assignment statement can be easily implemented via: Destruction of the old object followed by copy ...
2
votes
3answers
93 views

Constructor c++ Object obj = Object(“string”, 22); creating a temporary Object?

I asked in the chat area of stackoverflow the following question. If you create your object like this does it create a temporary and then call the assignment operator to assign the temp to the obj ...

1 2 3 4 5 7