Tagged Questions
The precedence tag has no wiki summary.
22
votes
3answers
274 views
a question about the precedence of C++ operators “address of” and “scope resolution”
Hello I have this code with a compiler error (error is from Microsoft Visual Studio 2008):
class B
{
protected:
int b;
};
class A : public B
{
public:
void foo(){ &B::b; }// error C2248: 'B::b' ...
11
votes
1answer
248 views
Fixity of backtick operators?
What is the fixity of backtick operators?
For instance in this code from Real World Haskell:
ghci> (1+) `fmap` [1,2,3] ++ [4,5,6]
[2,3,4,4,5,6]
It's evident the backtick operator `fmap` has a ...
11
votes
1answer
158 views
Python: what does “import” prefer - modules or packages?
Suppose in the current directory there is a file named somecode.py, and a directory named somecode which contains an __init__.py file. Now I run some other Python script from this directory which ...
11
votes
3answers
4k views
Where is it legal to use ruby splat operator?
Splats are cool. They're not just for exploding arrays, although that is fun. They can also cast to Array and flatten arrays (See http://github.com/mischa/splat/tree/master for an exhaustive list of ...
9
votes
2answers
170 views
Haskell infix function application precedence
Let f x y = x * y. We can apply this function in two ways: f 5 6, or, using infix notation, 5 `f` 6. Do the operator rules apply to this last expression? What precedence will this application have? Is ...
9
votes
8answers
558 views
What is the right precedence of the math expression
What is the correct sequence of the math operations in this expression in Java:
a + b * c / ( d - e )
1. 4 1 3 2
2. 4 2 3 1
I understand that result is the same in both ...
8
votes
3answers
153 views
Scala: Can you use “foo match { bar }” in an expression without parentheses?
Why are the parentheses needed here? Are there some precedence rules I should know?
scala> 'x' match { case _ => 1 } + 1
<console>:1: error: ';' expected but identifier found.
'x' ...
6
votes
3answers
373 views
Python operator precedence
Python docs say that * and / have the same precedence.
I know that expressions in python are evaluated from left to right.
Can i rely in that and assume that j*j/m is always equal to (j*j)/m
avoiding ...
6
votes
4answers
608 views
c# generic method overload not consistent with abstract Visitor pattern
experimenting with Visitor pattern and generic method I found a kind of discrepancy in C#.NET. AFAIK C# compiler prefers an explicit overload to a generic method, therefore the following code:
public ...
5
votes
4answers
612 views
Haskell operator vs function precedence
I am trying to verify something for myself about operator and function precedence in Haskell. For instance, the following code
list = map foo $ xs
can be rewritten as
list = (map foo) $ (xs)
...
4
votes
4answers
94 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 ...
4
votes
3answers
452 views
Why does postfix operator++ have higher precedence than prefix operator++?
Defined this way, we can do neither ++x++ nor ++x--. But on the other hand, both (++x)++ and (++x)-- are useful expressions: (++x)++ increments x by two and returns the value "in the middle", while ...
4
votes
4answers
324 views
C Operator precedence (x[i] = --i) [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
I am wondering if x[i] = --i is defined by C standard.
I tested it with g++ and it ...
4
votes
2answers
711 views
Operator precedence and associativity in a parser (Haskell)
I am trying to extend a recursive-descent parser to handle new operators and make them associate correctly. Originally there were only four operators (+ - / *) and they all had the same precedence. ...
4
votes
4answers
284 views
How does Perl decide which order to evaluate terms in an expression?
Given the code:
my $x = 1;
$x = $x * 5 * ($x += 5);
I would expect $x to be 180:
$x = $x * 5 * ($x += 5); #$x = 1
$x = $x * 5 * 6; #$x = 6
$x = 30 * 6;
$x = 180;
180;
But instead it is ...
4
votes
5answers
2k views
How do you do many to many table outer joins?
I have 3 tables, foo, foo2bar, and bar. foo2bar is a many to many map between foo and bar. Here are the contents.
select * from foo
+------+
| fid |
+------+
| 1 |
| 2 |
| 3 |
| 4 |
...
3
votes
5answers
111 views
C# increment ToString
I add an unexpected behaviour from C#/WPF
private void ButtonUp_Click(object sender, RoutedEventArgs e)
{
int quant;
if( int.TryParse(Qnt.Text, out quant))
{
...
3
votes
4answers
82 views
CSS: Child selector higher precedence than class selecctor?
I have the following HTML:
<div class="form-square">
<div class="seven-col">
Hello World!
</div>
</div>
And the following CSS:
div.form-square > div {
...
3
votes
1answer
103 views
servlet-filters precedence
Since since filters are chained one after another, I cannot know when to remove MDC/NDC (log4j) information.
Which is the topmost servlet filter?
I have one defined inside ...
3
votes
2answers
239 views
Scala parser combinators, parsers fails due to precedence
I am trying to write an interpreter for the programming language Icon. One of the steps in this process is writing a parser for Icon, which I've done in the following way:
import java.io.FileReader
...
3
votes
1answer
166 views
XSL template precedence
I have 2 Templates
<template match="vehicle_details[preceding-sibling::vehicle_type = '4x4']/*">
.......
</xsl:template>
<xsl:template match="vehicle_details[descendant::color = ...
3
votes
2answers
108 views
Is there a quick way to determine precedence and associativity of operators?
I know about perlop. What I am looking for is a quick lookup like the GHCi :info command:
ghci> :info (+)
class (Eq a, Show a) => Num a where
(+) :: a -> a -> a
...
-- Defined ...
3
votes
1answer
65 views
What is the reason for ordering an if statement this way?
Why form if statements like...
if (null === $this->foo){...}
if (0 === count($bar)){...}
rather than...
if ($this->foo === null){...}
if (count($bar) === 0){...}
I've noticed this in the ...
3
votes
8answers
210 views
Confusing CSS rules precedence
I have this (simplified) markup:
<ul id="topnav">
<li>one</li>
<li>two</li>
<li id="last-nav">last</li>
</ul>
and these CSS rules:
...
3
votes
2answers
236 views
What's wrong with this Perl boolean syntax?
I have hack I need to employ under these conditions:
-It's the last page of data.
-It's not the first page, either.
-There's not a page-size-even number of data items.
So I tried this code:
my ...
2
votes
3answers
64 views
Operator precedence in C [closed]
Possible Duplicate:
why "++x || ++y && ++z" calculate "++x" firstly ? however,Operator "&&" is higher than "||"
The following program ...
2
votes
3answers
140 views
How to initialize a certain MBean first when navigating to a page
I have a page split in 3. First part is a list of links which is bound to a mBean (MLeft), and the second is the current mBean (MCenter) of the page I'm in. MCenter inserts data into MLeft so that the ...
2
votes
1answer
152 views
Lambda Calculus operators precedence
I have problems understanding lambda calculus operators precedence.
For example the following code:
lambda x.x z lambda y.x y
is going to be:
lambda x. (x (z lambda y. x y))
or
lambda x. ...
2
votes
4answers
204 views
How to PROVE the precedence of '&&' and '||' by CODING in java?
I knew from somewhere that logical and: '&&' has a higher precedence than logical or: '||' in java.And while programming I rarely make mistakes on them. But till now I didn't find any clue ...
2
votes
3answers
113 views
What is the order precedence of a = b == c in JavaScript?
var clicked = $(event.currentTarget || target);
var clickedIsActive = clicked[0] == this.active[0];
I'm fairly new to js, and while attempting to read through some jQuery code, I came across the ...
2
votes
2answers
217 views
MySQL INSERT and SELECT Order of precedence
if an INSERT and a SELECT are done simultaneously on a mysql table which one will go first?
Example: Suppose "users" table row count is 0.
Then this two queries are run at the same time (assume it's ...
1
vote
3answers
151 views
Make an implicit conversion operator preferred over another in C++
I would like to prefer a certain implicit conversion sequence over another. I have the following (greatly simplified) class and functions:
class Whatever {...}
template <class T>
class ref
{
...
1
vote
2answers
59 views
Dependency property precedence. I want local value to be overridable
I am writing a custom control. It has a dependency property that is supplied a "default" value by the control. This value can change at any time.
I want to be able to override this value via a style ...
1
vote
1answer
151 views
SQL Server 2008 UPDATE Statement WHERE clause precedence
I wrote the following query:
UPDATE king_in
SET IN_PNSN_ALL_TP_CNTRCT_CD = IN_PNSN_ALL_TP_CNTRCT_CD + '3'
WHERE COALESCE(IN_PNSN_ALL_TP_CNTRCT_TX, '') <> ''
AND CHARINDEX('3', ...
1
vote
1answer
210 views
custom template for a textBox that does not behave as I want on IsEnabled = false
my issue is a bit similar to this one:
Having an issue with my TextBox control template
but I'd like to go a little further:
my issue is simple:
I have templated controls (labels, textboxes, ...
1
vote
1answer
144 views
Help me understand lambda expression precedence
Looking at the Operator Precedence table, I'm confused by where lambda expressions fit in to all of this. Numbering the table 1 to 25 (lowest to highest precedence), I see the two key tokens used for ...
1
vote
1answer
60 views
Need help understanding precedence
Can someone give me a brief description of how to determine the precedence of one thing with respect to another in a grammar? I can't seem to find a good answer in my books or online even though i'm ...
1
vote
5answers
229 views
best practice on precedence of variable declaration and error handling in C
is there an advantage in one of the following two approaches over the other?
here it is first tested, whether fopen succeeds at all and then all the variable declarations take place, to ensure they ...
1
vote
5answers
165 views
So maybe I'm not getting the idea in Ruby but I have a question about Enumerables inject
The |m,k| thing kind of throws me off. Does this have anything to do with order of precedence?
m standing for 0 (or 1 in some languages) and k for the last in the Array/Hash whatever?
So why do ...
1
vote
3answers
299 views
SQL Precedence Query
I have a logging table which has three columns. One column is a unique identifier, One Column is called "Name" and the other is "Status".
Values in the Name column can repeat so that you might see ...
0
votes
3answers
44 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)
{
...
0
votes
2answers
155 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 ...
0
votes
3answers
87 views
Associativity and Precedence in C
i) What does if(0) mean?
Everytime I use it to test what output i will get, it returns the false part.
Is it equivalent to if(0 == 0), incase of which the true part is evaluated.
ii) Associativity ...
0
votes
3answers
58 views
Do CSS / HTML children override parents?
Given the following code:
<div id="bla">
<p class="blubber">Johnny Bananas</p>
</div>
and the style in head of that html doc:
<style>
...
0
votes
3answers
105 views
What's the precedence of ruby's method call
http://phrogz.net/programmingruby/language.html#table_18.4
The table provided by the link above only gives the precedence of ruby's operators. What's the precedence of a method(or should I say: a ...
0
votes
1answer
96 views
Can I use a python regex for letters, dashes and underscores?
I want to handle geographic names i.e /new_york or /new-york etc
and since new-york is django-slugify for New york then maybe I should use the slugifed names even if names with underscores look better ...
0
votes
1answer
34 views
How to make ELSE associate with farthest IF in yacc?
I now know how to make ELSE associate with the nearest IF:
%nonassoc IFX
%nonassoc ELSE
| IF stmt %prec IFX
| IF stmt ELSE stmt
But how can I make ELSE associate with farthest IF?
I tried to ...
0
votes
3answers
130 views
PHP: Regex match string not preceeded by a dollar sign
In my syntax highlighter, I use regex to parse different terms. Below is how I parse PHP classes:
foreach ( PHP::$Classes as $class )
$code = preg_replace( "/\b{$class}\b/", ...
0
votes
4answers
192 views
Operators Precedence in C
printf ("%d \n", 2 > !3 && 4 - 1 != 5 || 6 ) ;
Can someone explain to me how this is evaluated ? What I am most confused about is the ! symbol in front of the 3... how to evaluate 2 > ...
0
votes
3answers
100 views
C Compare operator precedence
Hi there i have a method called
int compare(char op1, char op2)
the method will return 1, -1 or 0 depending on the result of the comparison. (1 if op1 < op2).
I need to compare the ...