Operator Precedence is a rule used to clarify unambiguously which procedures should be performed first in a given expression
4
votes
4answers
456 views
Pointer increment operator errors
Ok so this one has me really confused.
I'm working on a HW problem, and discovered something that was really weird to me.
here is the function and call in question
int find_oldest_frame(int **a, int ...
7
votes
4answers
503 views
Simple Java regex not working
I have this regex which is supposed to remove sentence delimiters(. and ?):
sentence = sentence.replaceAll("\\.|\\?$","");
It works fine it converts
"I am Java developer." to "I am Java developer"
...
9
votes
8answers
1k 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 ...
1
vote
1answer
263 views
Precedence of operators in SQL*Plus
How is
A - B U B - A
parsed in SQL*Plus?
Is it parsed as
(A - B) U (B - A) or as A - (B U B) - A ?
I could find this page using Google, but it doesn't say which has higher precedence, U or -.
1
vote
1answer
73 views
AND, OR output wrong result
Suppose I use 2 AND and one OR to retrieve a result, first test with input text value on name, I could get correct result but when I change $getc to any value other than empty string, the result does ...
1
vote
3answers
258 views
PHP: if(!$one == $two) doesn't work always?
Yes, this is just a question i would like to get an answer on. I experienced it a couple of times, where this:
if(!$one == $two){ echo "Not the same"; }else{ echo "The same"; }
Will not work, and
...
3
votes
2answers
297 views
Bitwise operator predence
A gotcha I've run into a few times in C-like languages is this:
original | included & ~excluded // BAD
Due to precedence, this parses as:
original | (included & ~excluded) // ...
5
votes
4answers
159 views
Shortcircuiting: OrElse combined with Or
If I have the following ...
a OrElse b
... and a is True then clearly b is never evaluated. But if I add an Or, then what?
a OrElse b Or c
Does/should c get evaluated? And what if I put in some ...
6
votes
3answers
946 views
Why does this C program print weird characters in output?
I've the following program:
#include <stdio.h>
int main()
{
int ch;
while( ch = getchar() != '\n') {
printf("Read %c\n",ch);
}
return 0;
}
...
4
votes
4answers
515 views
JavaScript Operator Precedence logic confuses me
The operator precedence table I can find is:
https://developer.mozilla.org/en/JavaScript/Reference/Operators/Operator_Precedence
according to the table, both '>>' and '*' are left-to-right ...
8
votes
5answers
75 views
Similar syntax but one shows error but another does not
Hiii all
I made this program today
int main()
{
int a = 1,2; /* Shows error */
int b = (1,2); /* No error */
}
Why first one shows error while second one does not? Just ( ) makes one program ...
8
votes
1answer
203 views
Operator precedence for “<<” and “++” in VS2008 with optimization
I'm stuck with a weird VS2008 C++ issue, that looks like operator precedence is not respected.
My question is what is the output of this:
int i = 0;
std::cout << ((i != 0) ? "Not zero " : ...
6
votes
3answers
742 views
List Operator Precedence in Perl
I'm reading the "Beginning Perl" book, and it gives these two statements:
print "Test one: ", 6 > 3 && 3 > 4, "\n";
print "Test two: ", 6 > 3 and 3 > 4, "\n";
The first line ...
5
votes
8answers
965 views
Operator precedence in C#
Is
(int)(int1 / (float)var2.Count() * 100)
equivalent to
(int)((int1 / (float)var2.Count()) * 100)
...and will it use floating point or integer division?
Edit... if the answer is yes to the ...
1
vote
2answers
214 views
Operator Precedance in PHP: Ternary XOR Assigment
After writing my response on the question how to assign to multiple variables in a ternary operator I actually tried out the code I wrote:
true ? $w = 100 xor $r = 200 : $w = 300 xor $r = 400;
...
0
votes
3answers
734 views
Take care about precedence of * and ++ in C/C++, (and any keystroke when programming) [closed]
Somebody write this function
void strToUpper(char *p) {
while (*p) {
*p = TOUPPER(*p);
*p++; //<-- Line to pay attention
}
}
I asked, why do you put the * before p++?
...
2
votes
3answers
135 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 ...
16
votes
2answers
5k views
Operator precedence in scala
I like scala's propose of operator precedence but in some rare case unmodified rules may be inconvenient because you have restrictions in naming your methods. Is there in scala ways to define another ...
5
votes
8answers
338 views
Order of operations in C. ++ vs |=, which occurs first?
I have the following code that I'm reading through:
if( (i%2) == 0 ){
*d = ((b & 0x0F) << 4);
}
else{
*d++ |= (b & 0x0F);
};
I'm looking specifically at the else statement ...
2
votes
10answers
274 views
Rule of precedence == over =
I am just wondering would it be better to do this:
if((fd = open(filename, O_RDWR)) == -1)
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
or this
fd = open(filename, O_RDWR);
...
2
votes
1answer
424 views
Specification Pattern and Boolean Operator Precedence
In our project, we have implemented the Specification Pattern with boolean operators (see DDD p 274), like so:
public abstract class Rule {
public Rule and(Rule rule) {
return new ...
0
votes
1answer
191 views
The priority of operator * in AT&T assembly language
Here I have a question. What is the priority of the operator * in assembly language?
For example:
*0x804983c(,%eax,4)
Does it mean ( %eax * 4 ) + *0x804983c or *( %eax * 4 + 0x804983c )?
Thanks!
3
votes
4answers
882 views
In what order does evaluation of post-increment operator happen?
Given
std::vector<CMyClass> objects;
CMyClass list[MAX_OBJECT_COUNT];
Is it wise to do this?
for(unsigned int i = 0; i < objects.size(); list[i] = objects.at(i++));
Or should I expand ...
2
votes
4answers
233 views
Why the output for “a” is -80?
#include<stdio.h>
#include<conio.h>
#define ABC 20
#define XYZ 10
#define XXX ABC - XYZ
void main()
{
int a;
a = XXX * 10;
printf("\n %d \n", a);
getch();
}
I ...
3
votes
3answers
321 views
How does the different behavior of the unless- and “if !” statement influence the range-operator in scalar context?
On http://novosial.org/perl/one-liner/ I found the following two one-liners. The outputs are different because the unless statement is different from if ! ( due to the associativity and precedence ...
2
votes
5answers
195 views
simple boolean question
What am I doing wrong here?
I am wanting to display integers from 1-100 who are divisible by either 6 or 7. That's done and working. The next step is to not display any that are divisible by ...
1
vote
8answers
593 views
How does operator precedence grouping work in C for *, /, and %?
Referring to the O'Reilly pocket reference for C, I'm a little confused by the description for grouping of the *, /, and % operators. The book says that grouping occurs left to right -- now I think ...
3
votes
1answer
106 views
Are there Ruby precedence issues with using Proc.call vs. Proc.[]?
Recently I was having a discussion with a friend about Ruby's Proc. You can call a Proc in one of several ways. One way is to invoke Proc.call:
p = Proc.new { |x| "hello, #{x}" }
p.call "Bob"
=> ...
11
votes
5answers
6k views
In Java, what are the boolean “order of operations”?
Let's take a simple example of an object "Cat". I want to be sure the "not null" cat is either orange or grey.
if(cat != null && cat.getColor() == "orange" || cat.getColor() == "grey") {
...
11
votes
6answers
2k views
Java operator precedence guidelines
Misunderstanding Java operator precedence is a source of frequently asked questions and subtle errors. I was intrigued to learn that even the Java Language Specification says, "It is recommended that ...
9
votes
14answers
896 views
Which side (left or right) of && (and) operator evaluated in C++
Which order is the and && operator evaluated
For example the following code
if (float alpha = value1-value2 && alpha > 0.001)
//do something
threw an exception that alpha is ...
1
vote
8answers
248 views
Member access differences
can someone tell me what is the different between (*ptr).field and ptr->field?
I know it connect somehow to static and dynamic linking, but i dont know what is it.
can someone tell me the differnet ...
3
votes
2answers
506 views
PowerShell: how *exactly* does the RHS of the -f operator work?
Last time I got confused by the way PowerShell eagerly unrolls collections, Keith summarized its heuristic like so:
Putting the results (an array) within a grouping expression (or subexpression ...
0
votes
3answers
180 views
Is there a difference on how java performs operations using shortcut operators from the regular ones?
I am working on a java program concerning the pascal's triangle.
So this is how it is coded:
for(int i = 0; i < 5; i++){
for(int j = 0, x = 1; j <= i; j++){
System.out.print(x + " ...
99
votes
6answers
83k views
Operator precedence with Javascript Ternary operator
I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator.
h.className += h.className ? ' error' : 'error'
The way i think this code works is as ...
11
votes
6answers
1k views
int[] arr={0}; int value = arr[arr[0]++]; Value = 1?
Today I came a cross an article by Eric Lippert where he was trying to clear the myth between the operators precedence and the order of evaluation. At the end there were two code snippets that got me ...
14
votes
3answers
10k views
SQL Logic Operator Precedence: And and Or
Are the two statements below equivalent?
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3,4,5) AND some_other_expr
and
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3) or some_col in (4,5) AND ...
12
votes
7answers
7k views
C# conditional AND (&&) OR (||) precedence
We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...
0
votes
2answers
1k views
dereference and advance pointer in one statement?
I'm reading from a byte array as follows:
int* i = (int*)p;
id = *i;
i++;
correct me if I'm wrong, but ++ has precedence over *, so is possible to combine the *i and i++ in the same statement? ...
20
votes
8answers
7k views
++ on a dereferenced pointer in C?
Trying to understand the behaviour of pointers in C, i was a little surprised by the following (example code below):
#include <stdio.h>
void add_one_v1(int *our_var_ptr)
{
*our_var_ptr = ...
3
votes
7answers
13k views
2
votes
8answers
900 views
Understanding evaluation of expressions containing '++' and '->' operators in C
Consider this example:
struct {
int num;
} s, *ps;
s.num = 0;
ps = &s;
++ps->num;
printf("%d", s.num); /* Prints 1 */
It prints 1.
So I understand that it is because according to ...
6
votes
1answer
1k views
Prolog operator precedence and rules matching
I have the next two facts loaded in my prolog interpreter:
foo(U+V,1).
foo(U*V,2).
Now I try the next queries with that results:
foo(x*x+x,R). --> R = 1
foo(x+x*x,R). --> R = 1
...
3
votes
10answers
2k views
How do I parenthesize an expression programmatically?
I have an idea for a simple program to make that will help me with operator precedence in languages like C. The most difficult part of this is parenthesizing the expression. For example, I want this:
...
3
votes
7answers
772 views
C #define macros
Here is what i have and I wonder how this works and what it actually does.
#define NUM 5
#define FTIMES(x)(x*5)
int main(void)
{
int j = 1;
printf("%d %d\n", FTIMES(j+5), FTIMES((j+5)));
}
...
3
votes
18answers
841 views
Should One Know Operator Precedence thoroughly?
Should the programmer be aware of operator precedence thoroughly?
Using braces to group expressions should be okay, isn't? I always uses braces to be on safer side. And when asked a question on ...
14
votes
9answers
2k views
C++ Mystery
Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.
int i = 5;
i = ++i + ++i;
cout<<i;
3
votes
7answers
3k views
Priority of C++ operators “&” and “->”
Given the following:
&row->count
Would &(row->count) be evaluated or (&row)->count be evaluated in C++?
EDIT: Here's a great link for C++ precedence.
35
votes
5answers
3k views
Why does the Perl conditional operator not do what I expect?
This snippet of Perl code in my program is giving the wrong result.
$condition ? $a = 2 : $a = 3 ;
print $a;
No matter what the value of $condition is, the output is always 3, how come?
Edit: I ...