The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

SQL like command failing in Oracle

I have the following code, which i want to compare two strings (varchars). If item.item_name contains the string equipment_type anywhere, i want it to return the record. But i recieved a error, ...
2
votes
2answers
96 views

unary minus in shunting yard expression parser

here is my expression parser using shunting-yard algorithm it work well as expected except in one situation , when I use unary minus like in -2*3 it wont work (I think it shouldn't because I didn't ...
0
votes
8answers
134 views

(solved) ++i+i++ evaluation

Confusion rose because of this post. The author updated his post, and the result became clear. Conclusion: Java evaluates expressions from left to right Closed! As evaluation of expression is ...
3
votes
1answer
56 views

Unary Operations fused with assignment

Doubtful result in the following code: public static void main (String[] args) { int i = 2; i = i+=2 + i++; System.out.println(i); } Was expecting 8 as output, as 'i+=2' should update i, but its ...
0
votes
1answer
51 views

Unary operator on char[]

I am trying to define the unary operator - on an array of char Int operator - (const char *rs){ Int b(rs); return b; } but I am getting two error messages IntelliSense: ...
0
votes
1answer
55 views

Why doesn't the unary plus have the meaning of absolute value? [closed]

Across I have seen many questions of why the unary plus exists in the specific language like:Why does F# have a unary plus operator? What is the purpose of Java's unary plus operator? What's ...
-4
votes
1answer
52 views

Unary ++ order of precedence [duplicate]

If int x=5;I suppose the expression y=++x * ++x; is evaluated as: First execute ++x causing x=6 and then again ++x causing x=7 the expression then evaluates y=x*x making the value of y=49 Using same ...
3
votes
2answers
75 views

Java disambiguation of unary prefix operators

How does the Java parser handle ambiguous unary operators? For example, assuming you had int x declared somewhere, +--x is perfectly valid code. ---x is theoretically valid as well, but the compiler ...
4
votes
2answers
432 views

NoMethodError undefined method '-@' NoMethodError in Controller Ruby on Rails

Context: I pulled the most recent code from the repository and tried to make sure that the changes I was about to push up were going to work with that version of the code. This is a Ruby on Rails ...
22
votes
5answers
650 views

Does the unary + operator have any practical use?

Was the unary + operator only included for symmetry with the unary - operator, or does it find some practical use in C++ code? Searching here, I came across What is the purpose of the unary ...
0
votes
4answers
1k views

Java Expression Parser & Calculator Shunting Yard Algorithm

So the task is to create our own parser for a expression calculator. For Example: Input: 3+2*1-6/3 Output: 3 Input: 3++2 Output: Invalid Expression Input: -5+2 Output: -3 Input: 5--2 Output: 7 ...
-1
votes
4answers
94 views

Unary operations in C++

I came across a programming question of which I knew only a part of the answer. int f( char *p ) { int n = 0 ; while ( *p != 0 ) n = 10*n + *p++ - '0' ; return n ; } This is what I think the ...
0
votes
2answers
67 views

Result of unary & operator applied to a function

C99 6.3.2.1/4 A function designator is an expression that has function type. Except when it is the operand of the sizeof operator or the unary & operator, a function designator with type ...
1
vote
1answer
42 views

Linux unary operator to check exitence of file with pattern name

I´d like to check if there is any file whose name matches a given pattern, in a given path. assert=1 myPatternpath=$HOME/folderName/abcMYPATTERN.xml if [ ! -f $myPatternpath ] then assert=0 fi echo ...
0
votes
0answers
37 views

increment operator conjunction with other inc/dec operators in c language; [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Doubt in C increment operator i dont know why but o/p of this program is 8,125 why? ...
3
votes
2answers
273 views

unary operator overloading special case in c++

I have success fully overloaded unary ++,-- postfix/prefix operator and my code works fine, but when ever in use (++obj)++ statement it returns unexpected result here is code class ABC { public: ...
-1
votes
1answer
151 views

C++ compilation error using unary und binary function objets

I have a short question regarding a shot C++ code snippet. I get a compilation error, as soon as i want to evaluate the () operator (last line before return of 0 in the main method). The code looks ...
4
votes
3answers
289 views

Does it make sense for unary operators to be associative?

The C++ operator precedence table from http://en.cppreference.com/w/cpp/language/operator_precedence (I know it's not normative, but the standard doesn't talk about precedence or associativity) marks ...
3
votes
1answer
360 views

Different output in XCode to Visual Studio [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) I've just started a programming course and this week we have been learning about ...
6
votes
7answers
545 views

Explain +var and -var unary operator in javascript

I'm trying to understand unary operators in javascript, I found this guide here http://wiki.answers.com/Q/What_are_unary_operators_in_javascript most of it makes sense but what I don't understand is ...
0
votes
4answers
70 views

An example of a logical opposite value of a variable in javascript

I am trying to understand unary operators in javascript, and found this reference guide here http://wiki.answers.com/Q/What_are_unary_operators_in_javascript, I understand most of the examples but I ...
4
votes
4answers
170 views

How does the unary minus operator work on booleans in C++?

I am currently converting some OpenCV code from C++ to Java. I can't use JavaCV, as we need the conversion in native Java, not a JNA. At one point in the code, I get the following assignment: dst[x] ...
0
votes
5answers
152 views

using unary & operator on function return value

I've wanted to apply unary '&' operator just behind function to operate on function return value. However, I get a compile-time error (I use gcc from MinGW) test.c: In function 'main': ...
0
votes
6answers
323 views

Unary operators in java vs c++ [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Is there any difference between the Java and C++ operators? Why unary operators ...
0
votes
3answers
620 views

Unary Operator with a while loop in bash

I'm trying to get a bash script setup so it'll move files up to a specified size limit(in this case 1GB) from one directory to another. I'm trying to get it to enter the loop but I'm having issues ...
0
votes
2answers
326 views

Using precedence in Bison for unary minus doesn't solve shift/reduce conflict

I'm devising a very simple grammar, where I use the unary minus operand. However, I get a shift/reduce conflict. In the Bison manual, and everywhere else I look, it says that I should define a new ...
13
votes
1answer
304 views

What does a plus sign do in front of a variable in Python?

There's the following bit of Python code in a project I have to maintain: # If the `factor` decimal is given, compute new price and a delta factor = +factor.quantize(TWOPLACES) new_price = ...
0
votes
1answer
350 views

When converting from infix to postfix, how do you specify between a uniary and a binary +/-

Under this grammar: ^ + - * / < > = <= >= and or not I'm using a function (shunting-yard algorithm) to convert from infix to postfix and it works! Except it doesn't include ...
5
votes
1answer
15k views

encounter “unary operator expected” in bash script

in my bash script, I have a function to return 0 or 1(true or false) for the later main function's condition. function1 () { if [[ "${1}" =~ "^ ...some regexp... $" ]] ; then return 1 ...
2
votes
1answer
461 views

Unary And Binary Minus in Parse Tree

I am creating a parse tree that will contain expressions similar to 3 - 4 * 8 or 8 * -5 or -(10 * 1) I need a way to distinguish between the unary and binary minus. The way my grammar is ...
1
vote
1answer
345 views

Simplified smalltalk grammar using antlr - unary minus and message chaining

I am writing simple smalltalk-like grammar using antlr. It is simplified version of smalltalk, but basic ideas are the same (message passing for example). Here is my grammar so far: grammar GAL; ...
6
votes
1answer
198 views

Negate unary operator in Hibernate QL

I'm trying to switch boolean field using the following hql: update Entity e set e.booleanField = not e.booleanField where e.id = ?1; Unfortunately "QuerySyntaxException: unexpected token: not ...
2
votes
3answers
513 views

Conditional Statement Checking Null

I'm trying to figure out how to have a short, one line conditional statement. If this date is not null, add the filter to the current list of filters: fromDt ?? filters.Add(FilterType.DateFrom, ...
0
votes
1answer
130 views

C operators precedence [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) As of my knowledge the precedence in the following expression is 1st j-- 2nd --j ...
1
vote
2answers
277 views

Ternary operator on javascript and PHP, different output

I wanted to do Fizzbuzz in php by using unary if, but the output is not what I expect, and I didn't understood why, so I have copy-paste the code to javascript, and now the result is as expected. Why? ...
3
votes
2answers
206 views

c++ only: unary minus for 0x80000000

This question is supposedly for language-lawyers. Suppose that signed and unsigned int are both 32 bits wide. As stated in the n3337.pdf draft, 5.3.1.8, (-(0x80000000u)) = 0x100000000u-0x80000000u = ...
1
vote
2answers
343 views

unary minus for 0x80000000 (signed and unsigned)

The n3337.pdf draft, 5.3.1.8, states that: The operand of the unary - operator shall have arithmetic or unscoped enumeration type and the result is the negation of its operand. Integral ...
1
vote
3answers
128 views

Unary + operator on an int&

I have following statement and it compiles: static unsigned char CMD[5] = {0x10,0x03,0x04,0x05,0x06}; int Class::functionA(int *buflen) { ... int length = sizeof(CMD); + *buflen; // compiler ...
0
votes
2answers
246 views

unary operators in printf

Can anyone explain me the output of the following. I tried to reason everything and can explain the later part where 'x' is assigned the value of the expression but cannot understand how the answer is ...
2
votes
3answers
137 views

Is there a “normal” unary logical operator in C++

I mean, we all know that there is the negation logical operator !, and it can be used like this: class Foo { public: bool operator!() { /* implementation */ } }; int main() { Foo f; if ...
1
vote
3answers
1k views

Invalid type argument of unary '*' (have int?

I have read other questions like this but none seemed to work... My code is: int flowRateFormula(int pipeDiameter,double velocity) { int integer3; integer3=PI*(1/4)*(pow(pipeDiameter,2))*velocity; ...
11
votes
4answers
211 views

+ operator before expression in javascript: what does it do?

I was perusing the underscore.js library and I found something I haven't come across before: if (obj.length === +obj.length) { ... } What is that + operator doing there? For context, here is a ...
1
vote
3answers
956 views

How to overload an unary operator?

This is an interview test, which has been done. Which of the following statements accurately describe unary operator overloading in C++? A. A unary operator can be overloaded with one parameter ...
11
votes
2answers
1k views

C: unary minus operator behavior with unsigned operands

I can't seem to find the relevant parts in the C standard fully defining the behavior of the unary minus operator with unsigned operands. The 2003 C++ standard (yes, C++, bear with me for a few ...
10
votes
3answers
352 views

Why does F# have a unary plus operator?

Some languages use a unary plus operator for implicit conversions, such as coercing a string to a number (e.g. Javascript) or casting small number types to an int (e.g. most C-based languages), or to ...
3
votes
2answers
165 views

Unary: Why unary's behavior in c# varies with c/c++ [duplicate]

Possible Duplicate: Undefined, unspecified and implementation-defined behavior Undefined Behavior and Sequence Points Pre & post increment operator behavior in C, C++, Java, & C# ...
0
votes
5answers
462 views

Logical Complement Operator?

is it possible to use the logical operator "!" on object that holds a value of true or false? specifically for an object like this? public class Briefcase { private final double amount; ...
0
votes
2answers
143 views

Confused about how unary operations result in this output [duplicate]

Possible Duplicates: Multiple increment operators in single statement can someone explain to me why this line of code generate such output? code (after initilizeing both i&j to zero): ...
0
votes
5answers
716 views

Multiple increment operators in single statement [duplicate]

Possible Duplicate: Undefined Behavior and Sequence Points Pleae explain the behaviour of following statements int b=3; cout<<b++*++b<<endl; How will it be calculated?
0
votes
2answers
249 views

Matching unary signs and parsing math with Regex

One last Regex problem I need help with. What I am trying to do is be able to parse a math expression, while still having my Regex recognize unary symbols. I am using the following to parse an ...

1 2