Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
6answers
1k views

Does the order of operations change within an if expression?

I recently came across something that I thought I understood right off the bat, but thinking more on it I would like understanding on why it works the way it does. Consider the code below. The (x-- ...
19
votes
6answers
983 views

Is this code well-defined?

This code is taken from a discussion going on here. someInstance.Fun(++k).Gun(10).Sun(k).Tun(); Is this code well-defined? Is ++k in Fun() evaluated before k in Sun()? What if k is user-defined ...
12
votes
2answers
2k views

What good are right-associative methods in Scala?

I've just started playing around with Scala, and I just learned about how methods can be made right-associative (as opposed to the more traditional left-associativity common in imperative ...
8
votes
5answers
259 views

Why does “**” bind more tightly than negation?

I was just bitten by the following scenario: >>> -1 ** 2 -1 Now, digging through the Python docs, it's clear that this is intended behavior, but why? I don't work with any other languages ...
6
votes
3answers
145 views

Will this if statment cause bad things to happen?

int expenseCode; if (int.TryParse(sourceRecord.ExpenseCode, out expenseCode) && _ExpenseCodeLookup.ContainsKey(expenseCode)) { destRow.PROFIT_CENTER_NAME = ...
4
votes
8answers
330 views

Why does C give me a different answer than my calculator?

I've run into an odd problem with this code: legibIndex = 206.385 - 84.6 * (countSylb / countWord) - 1.015 * (countWord / countSent); This is the calculation for the legibility index of a given text ...
3
votes
3answers
1k views

Python String Formatting And String Multiplication Oddity

Python is doing string multiplication where I would expect it to do numeric multiplication, and I don't know why. >>> print('%d' % 2 * 4) 2222 >>> print('%d' % (2 * 4)) 8 Even ...
2
votes
5answers
54 views

Order of operations when working with array index

Consider this loop: int[] myArray = new int[10]; int myIndex = 0; for (int i = 0; i < 10; i++) { myArray[myIndex++] = myIndex; Console.WriteLine(myArray[i]); } This yields: 1 2 3 ... ...
2
votes
3answers
115 views

Do PHP's logical operators work as JavaScript's?

One of the things I like the most of JavaScript is that the logical operators are very powerful: && can be used to safely extract the value of an object's field, and will return null if ...
2
votes
4answers
541 views

Modulo and order of operation in Python, Zed Shaw examples

In Zed Shaw's "Learn Python the Hard Way" http://learnpythonthehardway.org (page 15-16) he has an example exercise # 3 print "Roosters", 100 - 25 * 3 % 4 the result is 97 (try it!) I cannot for the ...
2
votes
3answers
220 views

Order of operations question in Ruby

I'm initializing an instance of a class that tests the equality of two formulas. The formula's calculated values are in fact equal: RubyChem::Chemical.new("SOOS").fw => 96.0 ...
1
vote
4answers
42 views

What are the ramifications of right-to-left and left-to-right associativity in C based languages?

I'm in the process of writing a scripting language and I want to copy the (pretty well standardized) C order of operations. One thing that I never had a firm grasp of as a formal concept though is ...
1
vote
4answers
103 views

logic of calling copy constructor

class base { public: base(){ cout << "base constructor" << endl; } base(const base& rh) { cout << "base copy constructor" << endl; } }; ...
1
vote
0answers
104 views

EntLib Validation Rules Order of Operations?

What determines the order of execution of an EntLib validation rule: Given the following: <ValidatorComposition(CompositionType.And, Ruleset:="Default")> _ ...
1
vote
4answers
332 views

PHP Order of operations

I wanted to know how PHP would execute this. Order of operations addslashes(strip_tags($record['value'])); Is addslashes called first or strip_tags? In other words, does it execute from the inside ...
1
vote
1answer
104 views

Following an anchor to content on another page that isn't created until after the DOM is ready

To boil it down, I have two pages. Simplified, they could be represented this way. Page 1 <html> <a href="page-2.html#section-A">Link to section A</a> </html> Page 2 ...
1
vote
2answers
241 views

What is the order of operations with this concatenation?

x = "hello" " world".to_sym puts x.class This works and allows me to concatenate the two strings into a symbol, producing the output: Symbol But if I change it slightly to use a + instead of ...
0
votes
1answer
4k views

Excel VBA Boolean expression order of operations

I have a test in Excel VBA: If (test1) And (test2) And (test3) Then 'do something End If In C, Java, etc. test1 would be run first, then test2, then test3. Critically, if test1 is false the ...