The precedence tag has no wiki summary.
7
votes
2answers
95 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
54 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
38 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
54 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
78 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
52 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
23 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
2answers
81 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
61 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
100 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
65 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
64 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
30 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
134 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
47 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
157 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
535 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
137 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
104 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
72 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
53 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
93 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
70 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
149 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
220 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
123 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
119 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
134 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
213 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
183 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
247 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
128 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
236 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
376 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
258 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
248 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
102 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
658 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
388 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
160 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 ...
0
votes
3answers
316 views
PHP Logical Operators precedence affects variable assignment results strangely
$var4 = 123;
function fn1($p1)
{
return array('p1' => 1, 'p2' => 2);
}
if ($var1 = fn1(1) AND $var4 == 123)
{
print_r($var1);
}
if ($var2 = fn1(1) && $var4 == 123)
{
...
4
votes
4answers
188 views
Why the C++ compiler does not give precedence (increment operator under assigment) in this simple program?
According to the table of precedence of operators in C/C++ language (see Wikipedia), the increment operator (++) takes precedence with respect to the assignment operator (=).
Can someone explain why ...
0
votes
3answers
2k views
Why won't my failure flow initiate when SSIS sequence container fails?
I have some SSIS sequence containers, and if any of the tasks in them fail I want to direct the flow to a SQL task that cleans everything up so I can address the issue and run it again without having ...





