Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

232
votes
26answers
9k views

Why does this go into an infinite loop?

I'm a teacher, and yesterday a student wrote the following code: public class Tests { public static void main(String[] args) throws Exception { int x = 0; while(x<3) { ...
37
votes
4answers
1k views

Why does C++ support memberwise assignment of arrays within structs, but not generally?

I understand that memberwise assignment of arrays is not supported, such that the following will not work: int num1[3] = {1,2,3}; int num2[3]; num2 = num1; // "error: invalid array assignment" I ...
33
votes
16answers
2k views

Why is `i = ++i + 1` unspecified behavior?

Consider the following C++ Standard ISO/IEC 14882:2003(E) citation (section 5, paragraph 4): Except where noted, the order of evaluation of operands of individual operators and subexpressions ...
29
votes
2answers
1k views

How can I index a MATLAB array returned by a function without first assigning it to a local variable?

For example, if I want to read the middle value from magic(5), I can do so like this: M = magic(5); value = M(3,3); to get value == 13. I'd like to be able to do something like one of these: value ...
24
votes
2answers
334 views

What can I do with a moved-from object?

Does the standard define precisely what I can do with an object once it has been moved from? I used to think that all you can do with a moved-from object is do destruct it, but that would not be ...
16
votes
2answers
163 views

Assignment statement value

Everybody knows that in Python assignments do not return a value, presumably to avoid assignments on if statements when usually just a comparison is intended: >>> if a = b: File ...
15
votes
3answers
756 views

C++ Copy constructor, temporaries and copy semantics

For this program #include <iostream> using std::cout; struct C { C() { cout << "Default C called!\n"; } C(const C &rhs) { cout << "CC called!\n"; } }; const C f() { ...
14
votes
2answers
212 views

Javascript. Assign array values to multiple variables?

var a,b,c; var arr = [1,2,3]; [a,b,c] = arr; this code works perfectly in Firefox resulting a=1, b=2 and c=3, but it doesn't work in Chrome. Is it a Chrome bug or it is not valid javascript code? (I ...
13
votes
2answers
206 views

Why a = a is nil in Ruby?

I watched this video today, and I would like to know why the code a = a will be evaluated to nil if a is not defined. I also found this is also happen when using parallel assign. What is the reason ...
13
votes
5answers
3k views

Copy constructor and = operator overload in C++: is a common function possible?

Since a copy constructor MyClass(const MyClass&); and an = operator overload MyClass& operator = (const MyClass&); have pretty much the same code, the same parameter, and only differ ...
12
votes
1answer
92 views

In which order are variables assigned in Javascript?

Apparently this is identical in my Firebug console: var x = "A", y = x; x + y === "AA"; and var x = y, y = "A"; x + y === "AA"; Is this standard ECMAScript behaviour, that the order doesn't play ...
12
votes
1answer
701 views

Is variable assignment and reading atomic operation (threading)

I was unable to find any reference to this in the documentations... Is assigning to a double (or any other simple type, including boolean) an atomic operation viewed from the perspective of threads? ...
12
votes
25answers
1k views

Most Unpleasant Programming Task You've Had to Do

What is the most unpleasant programming task you've ever had to do? This could be an assignment from a job, or a project or homework assignment for a class. Dimensions of unpleasantness can include ...
11
votes
2answers
120 views

Test if an argument of a function is set or not in R

I have a function f that takes two parameters (p1 and p2): If for the parameter p2 no value was passed to the function, the value of p1^2 should be used instead. But how can I find out within the ...
11
votes
3answers
219 views

In C, if B is volatile, should the expression (void)(B = 1) read B

I work on compilers for a couple of embedded platforms. A user has recently complained about the following behaviour from one of our compilers. Given code like this: extern volatile int ...
10
votes
5answers
185 views

Pathway/road laying problem

Today we got an assignment to complete in lab (in two hours). The question was: You're given an m*n matrix. The matrix has 'h' residential halls and 'b' main building entrances. The location of ...
10
votes
9answers
468 views

C++ assignment - stylish or performance?

Having been writing Java code for many years, I was amazed when I saw this C++ statement: int a,b; int c = (a=1, b=a+2, b*3); My question is: Is this a choice of coding style, or does it have a ...
10
votes
3answers
1k views

Multiple assignment of non-tuples in scala

Just to clarify, when I say multiple assigment, parallel assignment, destructuring bind I mean the following pattern matching gem scala> val (x,y) = Tuple2("one",1) x: java.lang.String = one y: ...
10
votes
3answers
421 views

C#: Is this field assignment safe?

In this snippet: class ClassWithConstants { private const string ConstantA = "Something"; private const string ConstantB = ConstantA + "Else"; ... } Is there a risk of ending up with ...
10
votes
1answer
6k views

memcpy vs assignment in C

Under what circumstances should I expect memcpys to outperform assignments on modern INTEL/AMD hardware? I am using GCC 4.2.x on a 32 bit Intel platform (but am interested in 64 bit as well).
10
votes
8answers
3k views

Why would you use an assignment in a condition?

In many languages assignments are legal in conditions. I never understood the reason behind this. Why would you write: if (var1 = var2) { ... } instead of: var1 = var2; if (var1) { ... }
9
votes
8answers
182 views

Assign function arguments to `self`

I've noticed that a common pattern I use is to assign SomeClass.__init__() arguments to self attributes of the same name. Example: class SomeClass(): def __init__(self, a, b, c): self.a = ...
9
votes
2answers
219 views

Logical AND + assignment in c++, safe?

I just learned this great pattern (from javascript actually) and I would like to apply it to my c++ code. To explain the pattern, let's say I am representing a string as a linked list of these: ...
9
votes
4answers
508 views

Is struct assignment atomic in C/C++?

I am writing a program which has one process reading and writing to a shared memory and another process only reading it. In the shared memory there is a struct like this: struct A{ int a; ...
9
votes
3answers
440 views

Deep copy of a record with R1:=R2, or Is there good way to implement NxM matrix with record?

I'm implementing a N x M matrix (class) with a record and an internal dynamic array like below. TMat = record public // contents _Elem: array of array of Double; // procedure ...
9
votes
8answers
243 views

Who deletes the copied instance in + operator ? (c++)

I searched how to implement + operator properly all over the internet and all the results i found do the following steps : const MyClass MyClass::operator+(const MyClass &other) const { ...
9
votes
5answers
2k views

How do I do multiple assignment in MATLAB?

Here's an example of what I'm looking for: >> foo = [88, 12]; >> [x, y] = foo; I'd expect something like this afterwards: >> x x = 88 >> y y = 12 But instead ...
9
votes
5answers
474 views

Why does C++ allow an integer to be assigned to a string?

I encountered an interesting situation today in a program where I inadvertantly assigned an unsigned integer to a std::string. The VisualStudio C++ compiler did not give any warnings or errors about ...
8
votes
2answers
73 views

Multiple assignments inside if-statement

Why can't I do this: var fooElement, barElements; if(fooElement = document.getElementById('foo') && barElements = fooElement.getElementsByTagName('bar') && barElements[0] && barElements[0].onclick) ...
8
votes
5answers
191 views

Should I use the initializer list or perform assignments in my C++ constructors?

class Node { public: Node *parent; // used during the search to record the parent of successor nodes Node *child; // used after the search for the application to view the search in reverse ...
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
7answers
754 views

Introductory Computer Science assignments

I will be teaching my first university level Computer Science course this summer, and I'm currently working on coming up with ideas for fun assignments that the students will complete. The course is ...
8
votes
4answers
476 views

Difference between a += 10 and a = a + 10 in java?

may i know are(a += 10 and a = a + 10) these both the same or is there any difference or purpose is there. i got this doubt while studying about assignments in java.
7
votes
2answers
137 views

Possible to block OwnValues when DownValues already exist?

For cases where one has already assigned DownValues associated with the name 'a', is there an accepted way to block the assignment of OwnValues to the same name? (I originally came across this issue ...
7
votes
10answers
622 views

Why are assignment operators (=) invalid in a foreach loop?

Why are assignment operators (=) invalid in a foreach loop? I'm using C#, but I would assume that the argument is the same for other languages that support foreach (e.g. PHP). For example, if I do ...
7
votes
5answers
265 views

How can I use Perl's s/// in an expression?

I got a headache looking for this: How do you use s/// in an expression as opposed to an assignment. To clarify what I mean, I'm looking for a perl equivalent of python's re.sub(...) when used in the ...
7
votes
3answers
357 views

Java: += equivalence

Super quick question to refresh my mind: Is: x -= y; equivalent to: x = x - y; Thanks!
7
votes
7answers
2k views

Is there a strict definition for the words define, declare and assign?

I tend to use the words define, declare and assign interchangeably but this seems to cause offense to some people. Is this justified? Should I only use the word declare for the first time I assign to ...
7
votes
2answers
332 views

What's more expensive, comparison or assignment?

I've started reading Algorithms and I keep wondering, when dealing with primitives of the same type, which is the more expensive operation, assignment or comparison? Does this vary a great deal ...
6
votes
2answers
194 views

Why not set the value directly

I'm reading the source of a project, and found such code there: private var _responded: Boolean = _ { _responded = false } I don't understand why he wrote it like this, isn't it the same as: ...
6
votes
3answers
352 views

Multiple assignment semantics

In Python one can do: a, b = 1, 2 (a, b) = 1, 2 [a, b] = 1, 2 I checked the generated bytecode using dis and they are identical. So why allow this at all? Would I ever need one of these instead ...
6
votes
4answers
240 views

Why does assignment operator call constructor?

I am just playing around to understand smart pointers and trying to make mine but I come across a situation that I do not fully understand. Here is the code: #include <iostream> template ...
6
votes
4answers
214 views

In JavaScript, is chained assignment okay?

Am not new to JS or its syntax, but sometimes, the semantics of the language has me stumped at times. At work today, a colleague mentioned this: var a = b = []; is not the same as var a = [], b = ...
6
votes
5answers
1k views

Java assignment issues - Is this atomic?

I've got some questions about Java's assigment. Strings I've got a class: public class Test { private String s; public synchronized void setS(String str){ s = s + " - " + str; } public ...
6
votes
4answers
254 views

How would I express a chained assignment in Scala?

How would I express the following java code in scala? a = b = c; By the way, I'm re-assigning variables (not declaring).
6
votes
2answers
178 views

Is there a defined evaluation order for &= and |=?

If you have a C function which returns an integer, you could write a statement like this: MyInt &= MyFunc(); ...where we're using the bitwise-AND assignment operator. The question is: is ...
6
votes
3answers
925 views

How to set a range of elements in an stl vector to a particular value?

I have a vector of booleans. I need to set its elements from n-th to m-th to true. Is there an elegant way to do this without using a loop? Edit: Tanks to all those who pointed out the problems ...
5
votes
2answers
267 views

Assignment or memcpy? What is the preferred approach to setting an array member variable?

For this example, I am working with objective-c, but answers from the broader C/C++ community are welcome. @interface BSWidget : NSObject { float tre[3]; } @property(assign) float* tre; . - ...
5
votes
3answers
143 views

simple hash merge by array of keys and values in ruby (with perl example)

In Perl to perform a hash update based on arrays of keys and values I can do something like: @hash{'key1','key2','key3'} = ('val1','val2','val3'); In Ruby I could do something similar in a more ...
5
votes
1answer
131 views

replace() vs “[<-”?

I recently stumbled across replace() and "[<-". They seem to have similar functionality, for example with "[<-" I can do something like this: > x.tst <- array(1:6, c(2,3)) ...

1 2 3 4 5 12