The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
24 views

Fancybox jQuery conflicts with other jQuery

I only discovered that it was the Fancybox code after much testing... After referencing all the necessary FB files I'm calling an external .js file with: $(".fancybox").fancybox({ 'type': ...
10
votes
4answers
240 views

Comma operator precedence while used with ? : operator [duplicate]

I have no idea why the result of the two sub programs below are different: int a , b; a = 13, b=12; (a > b)? (a++,b--):(a--,b++); // Now a is 14 and b is 11 a = 13, b=12; (a ...
3
votes
0answers
56 views

What (if any) is the precedence of javascript keydown events?

I'm trying to create a simple javascript program that reads keydown events and translates them into movement on an HTML canvas. I've had a fairly large degree of success so far, I'm having a strange ...
7
votes
2answers
104 views

is the precedence of operator ignored in 'if' conditions

I'v a following code: void main() { int k, x, y, z; printf("\nExperiment 1:"); x = 0, y = 0, z = 0; k = x++ || y++ && z++; printf("\nx = %d, y = %d, z = %d and k = %d\n", x, y, z, ...
1
vote
3answers
82 views

C Operator Precedence, post-increment programming issue

Can some one explain why the output of program is 0 1 1 3 1 void main(void) { int i=-1,j=0,k=1,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); } ...
0
votes
1answer
44 views

If two change functions act on the same id which will take precedence?

I have a JavaScript working on some PHP code as follows: $(function(){ $("#hosted_prev_no").change(function(){ $("#attend").show(); $("#eligible").hide(); }); ...
2
votes
5answers
81 views

php string number concatenation messed up

I got some php code here: <?php echo 'hello ' . 1 + 2 . '34'; ?> which outputs 234, but when I add a number 11 before "hello": <?php echo '11hello ' . 1 + 2 . '34'; ?> It outputs ...
1
vote
1answer
89 views

Output of a c++ program

While i was trying to improve my c++ knowledge, i found this problem from an old programming contest. I will try to enter the contest this year so i want to be prepared. What is the output for the ...
1
vote
1answer
72 views

Left-associative operators vs Right-associative operators

If we have a expression: $b@ $ is a left-associative operator, @ is a left one. They have the same precedence. Then, how to tell which one should be executed first?
1
vote
0answers
24 views

How to manage element precedence in JavaFX2?

Given this code: @Override public void start(final Stage stage) { final StackPane root = new StackPane(); final Region r1 = new Region(), r2 = new Region(), r3 = new Region(); ...
2
votes
3answers
97 views

Precedence of dereference and postfix

When I read the TCPL by K&R, I just couldn't understand two expressions: *p++ = val; /*push val onto stack */ Here is my idea: dereference and postfix has the same precedence, and ...
3
votes
2answers
68 views

Can you change css class precedence at loadtime?

I'm working with jQuery datatables and oTableTools aButtons. I'm doing this: oTableTools: { aButtons: [ { sExtends: 'text', sButtonText: 'Add +', ...
-3
votes
4answers
113 views

C++ operator precedence

Lets say we have an iterator (iter) over a list of pointers to memory assigned to heap space, if I do that delete (*iter++) am I right that the precedence is first dereference iterator to get ...
2
votes
1answer
67 views

Printing out Finally before the Catch exception

I wonder why for example in the following snippet: try{ //here happens a SQLException } catch(SQLException e){ throw new InstantiationException(); } finally{ System.out.println("This is the ...
0
votes
2answers
67 views

precedence over event handlers

I am not sure if this is a good question or not but I would love to hear some inputs on this. Imagine there are 2 kinds of events: A: a mouse click B: mouse is currently inside a box Also, imagine ...
0
votes
2answers
32 views

css precedence ambiguity

I have following css rules: input[type="submit"],input[type="reset"]{ background-image:url(skins/images/bg_mega_hdr_on.png); background-repeat:no-repeat; padding:5px; margin:5px; ...
2
votes
2answers
146 views

How can I add parentheses as the highest level of precedence in a simple grammar?

I'm trying to add 2 things to my grammar: Unary minus sign, i.e. '-', and Parentheses Here's my grammar so far: <comp> ::= <expr> | <comp> <op0> <expr> <expr> ...
0
votes
2answers
59 views

.htaccess rule precedence

I have the following rules: RewriteRule ^app ?page=app [QSA] RewriteRule ^app/([0-9]+) ?page=app&id=$1 [QSA] RewriteRule ^app/([0-9]+)/edit ?page=edit&id=$1 [QSA] My page prints the GET ...
1
vote
2answers
29 views

Preserving PAREN! when a reduce operation is run on a block

When you use REDUCE you basically operate in the DO dialect, where PAREN! groups can be used for precedence on items: >> reduce ["Hello" (3 + 4) * 5] == ["Hello" 35] While in the COMPOSE ...
4
votes
3answers
171 views

Giving brackets precedence

I'm very new to java and I'm building a calculator, that takes an equation and evaluates it. I'm using the Scanner method to get an input, but this means my input is a Scanner type. What should I do ...
0
votes
1answer
630 views

precedence constraint editor in ssis package

I want to have one SSIS package , in this case I have two varables : x=1 and y=0 and 3 tasks : one is Execute SQL Task (task A) and two Script Task (task B and C) . I want when we select x=1 in task A ...
6
votes
2answers
144 views

What does it mean for an operator to bind in Perl?

For instance, in "Programming Perl", there are sentences such as this one: These string operators bind as tightly as their corresponding arithmetic operators. In other places, both in "PP" and ...
3
votes
2answers
109 views

Why does Ruby `**` operator have higher precedence than unary `-`?

This leads to the situation like: -1 ** 0.5 #=> -1 Only parenthesis remedies it: (-1) ** 0.5 #=> 6.123031769111886e-17+1.0i which is less favorable then expected 1.i, but basically ...
0
votes
2answers
73 views

Python: Using find function not in order

So the code below takes a string of inputted information (A math expression), and uses the find function to find one of the operators in "*/+-" and separates the string accordingly. def ...
1
vote
1answer
56 views

How to change ANTLR boolean precedence?

I have the following antler g file that works fine: grammar BoolTest; LEFT_PAREN : '(' ; RIGHT_PAREN : ')' ; AND : 'AND'; OR : 'OR'; WHITESPACE : ( ' ' | '\t' | '\r' | ...
0
votes
2answers
107 views

Boolean operators precedence

I would like to know if operator precedence in programming languages depends on implementation or there is a fixed rule that all languages follow. And if possible, could you order the following ...
0
votes
1answer
78 views

Precendence contraint not working after keeping expression

I have used two task connected to the foreach loop task, they both are executing and then foreach loop is executing after keeping contraint and expression it is not working. Below is the sample ...
0
votes
2answers
158 views

Why lower precedence operator executes first? [duplicate]

Possible Duplicate: Problem with operator precedence we know that precedence of prefix is greater than "LOGICAL AND" (&&) and precedence of "LOGICAL AND" is greater than "LOGICAL ...
5
votes
3answers
253 views

comma operator precedence in C++ ?: conditional

What's happening here? #include <iostream> using namespace std; int main(){ int x=0,y=0; true? ++x, ++y : --x, --y; cout << "x: " << x << endl; cout ...
0
votes
1answer
131 views

Shell Scripting - io redirecting - precedence of operators

could somebody explain the difference between these two codes? bad_command 2>& >> file.out and bad_command >> file.out 2>& The manual said that these two codes are ...
2
votes
2answers
123 views

Bash: Brace expansion precedence and loops over ranges

Googled an hour or so for a good, simple explanation to the following. At what point in: for i in $(eval echo "{01..30}"); do echo $i done ...does Bash evaluate the '..' component of the brace? ...
0
votes
1answer
147 views

php: operator precedence

I found this question at http://www.phpinterviewquestions.com/php-interview-questions/operator-precedence/ Following operations are true or false? (Operator Precedence) $one = true; $two = null; $a ...
0
votes
2answers
67 views

In SQL, how can I give one matching column precedence over another?

I've tried a few things, but I'm drawing a blank. Here's my query: SELECT * FROM Companies WHERE Symbol LIKE 'ZY%' OR Name LIKE '%ZY%' ORDER BY Symbol ASC LIMIT 2; Basically I want ...
6
votes
3answers
217 views

Python - curious/unexpected behaviour - precedence of operators

I have recently been experimenting with python generators a bit, and I came across the following curious behaviour, and I am curious to understand why this happens and what is going on: def ...
2
votes
2answers
1k views

Overriding default hadoop jars in class path

I've seen many manifestations of ways to use the user class path as precedent to the hadoop one. Often times this is done if an m/r job needs a specific version of a library that hadoop ...
1
vote
2answers
69 views

Trying to understand Precedence Rule 4 in Scala In Depth Book

I am trying to understand the 4th rule on Precedence on Bindings on page 93 in Joshua Suareth's book Scala in depth. According to this rule: definitions made available by a package clause not in ...
1
vote
1answer
56 views

How to set flat precedence rules in ANTLR?

I would like to set precedence rules (for example for math operators of multiplication and addition -- i.e. * and +) however in flat manner. Take a look: http://www.gregbugaj.com/?p=251 (in short it ...
4
votes
2answers
185 views

How to force a conversion to take precedence over other conversions?

I have classes: class IntegerVector: { IntegerVector operator * (const int scalar) const; }; class RealVector: { RealVector(const IntegerVector &other); RealVector operator * (const ...
1
vote
5answers
253 views

IE9 CSS precedence… bug?

I have two CSS rules: .avo-lime-table th, .avo-lime-table td { background-color: grey; } Rule two .avo-lime { background-color: green; } Everything works fine in FireFox, Chrome, Opera ...
3
votes
2answers
132 views

perl precedence on glob @argv

Since on Windows *.csv doesn't expand from the command line to @ARGV i typically end up doing something like map { glob } @ARGV to get the filenames. However, I came across an anomally and just ...
-1
votes
1answer
90 views

getting teased by printf( ) [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) hello can any one explain the behaviour of below program when i try to solve it ...
3
votes
5answers
256 views

output of expression in (--i + ++i) in java

int i=9; System.out.println(--i + ++i); output on execution : 17 The final value of i is : 9 But according to associativity and precedence rules in java,, ++i should be executed first i.e ...
4
votes
1answer
406 views

How to trace indirect precedents in Excel?

The Trace Precedents/Dependents buttons in Excel are extremely useful in analyzing the structure of a complex spreadsheet. I have a sheet comprised of many calls whose precedents are generated ...
0
votes
2answers
277 views

Cast operation precedence in C#

Will the differences below matter significantly in C#? int a, b; double result; result = (double)a / b; result = a / (double)b; result = (double)a / (double)b; Which one do you use?
0
votes
1answer
250 views

Same operator as prefix and postfix Precedence issue (Grammar, Java Cup)

I'm using Java, JFlex which passes data to Java Cup. How can I define precedence of an operator, which can be both postfix and prefix but with different precedence. What I mean: terminal END; ...
0
votes
2answers
104 views

css precedence of standalone attributes like cellpadding

I know that inline styles via the 'style' attribute take precedence over those specified in an external css file. But what about stand-alone attributes like 'cellpadding'? An example line would be ...
0
votes
2answers
107 views

Conditional Operator with and without ()

I have run in to some weird thing when I want to print one of my objects (which is obviously not null). If I use this line: text.append("\n [ITEM ID]: " + (item == null ? (otherItem == null ? 0 : ...
2
votes
2answers
711 views

Bison shift/reduce conflict in A ::= AA rule

I've written following bison grammar file: %left '+' '-' %left '*' '/' %token NUMBER %% expr : NUMBER | expr '+' expr | expr '-' expr | expr '*' expr | expr '/' expr | expr expr %prec '*' /* ...
2
votes
1answer
400 views

Why “(UIButton *)sender” and not “UIButton *sender”?

In Objective-C, what does "(UIButton *)sender" mean and why is it not "UIButton *sender"? Or some NSObject in place of UIButton. This is more a question about the precedence of the asterisk... - ...
1
vote
1answer
176 views

Precedence rules for matching groups with regexp

Consider the following .NET regular expression: ^(REF)?(.{1,10})-(\d{12})-(\d+)$ It defines four groups, in which I'm interested and which I will analyse separately. Now, consider an input string ...

1 2 3