Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
11answers
4k views

What does the unary plus operator do?

What does the unary plus operator do? There are several definitions that I have found (here and here) but I still have no idea what it would be used for. It seems like it doesn't do anything but there ...
10
votes
2answers
203 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
238 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 ...
7
votes
7answers
462 views

What is the difference between += and =+?

What is the difference between += and =+? Specifically, in java, but in general also.
5
votes
6answers
545 views

Unary operator result

In K&R ANSI C book, section A.7.4.5 (Unary Minus Operator) it is stated: ... The negative of an unsigned quantity is computed by subtracting the promoted value from the largest value of the ...
4
votes
2answers
200 views

What's the point of unary plus operator in Ruby?

Apart from making a nice symmetry with unary minus, why is unary plus operator defined on Numeric class? Is there some practical value in it, except for causing confusion allowing writing things like ...
4
votes
5answers
319 views

Unary Operator-() on zero values - c++

I wrote this code to overload the unary operator- on a matrix class: const RegMatrix RegMatrix::operator-()const{ RegMatrix result(numRow,numCol); int i,j; for(i=0;i<numRow;++i) ...
4
votes
3answers
1k views

Scala - Prefix Unary Operators

I've recently given Scala a second chance, and started with the project I always implement (in functional or pseudo-functional languages): an automated reasoner for propositional logic (and later ...
4
votes
4answers
155 views

++someVariable Vs. someVariable++ in Javascript

In Javascript you can use ++ operator before or after the variable name. What, if any, are the differences between these ways of incrementing a variable?
4
votes
5answers
686 views

What is the purpose of Java's unary plus operator?

Java's unary plus operator appears to have come over from C, via C++. As near as I can tell, it has the following effects: unboxes its operand, if it's a wrapper object promotes its operand to int, ...
3
votes
2answers
106 views

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

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

Unary NOT/Integersize of the architecture

From "Mastering Perl/Chapter 16/Bit Operators/Unary NOT,~": The unary NOT operator (sometimes called the complement operator), ~, returns the bitwise negation, or 1's complement, of the value, ...
3
votes
2answers
156 views

Why can't I have a literal list slice right after a print in Perl?

I see I can do something like this: print STDOUT (split /\./, 'www.stackoverflow.com')[1]; and "stackoverflow" is printed. However, this: print +(split /\./, 'www.stackoverflow.com')[1]; does ...
2
votes
3answers
76 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 ...
2
votes
4answers
253 views

Prefix form of unary operator in Haskell

In GHCi: Prelude> (+3) 2 5 Prelude> (*3) 2 6 Prelude> (/3) 2 0.6666666666666666 Prelude> (-3) 2 No instance for (Num (t -> t1)) arising from the literal 3' at ...
1
vote
3answers
95 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 ...
1
vote
3answers
132 views

Disable class pointer increment/decrement operators

For example code: A* pA = new A; I need to avoid pointer increment/decrement operators during compilation phase: pA++; // MUST failed during compilation phase
1
vote
4answers
603 views

bash : Multiple Unary operators in if statement

Is it possible to have multiple unary operators in if statements.. Here is the code snippet which is giving me error. Please correct the code here. if [ -f $input_file ] -a [ -f $output_file ] -a [ ...
1
vote
10answers
495 views

C# Compiler Behavior Question?

Hey everyone, in the following code, what should the result of d be after the second expression? int d = 1; d += d++; One would assume d is 3 afterwards but the unary increment d++ doesn't ...
0
votes
2answers
66 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 ...
0
votes
3answers
146 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; ...
0
votes
5answers
91 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
107 views

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

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
197 views

Multiple increment operators in single statement [closed]

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
73 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 ...
0
votes
1answer
64 views

Why would one use the unary operator on a property in ruby? i.e &:first [closed]

Possible Duplicate: Ruby/Ruby on Rails ampersand colon shortcut As a habit I try and read a little of someone elses source code regularly and comment on it in a gist. Right now I'm reading ...
0
votes
2answers
150 views

How do I implement a unary operator overload for a forward declared type in C++?

The following code does not compile in Visual Studio 2008. How do I get it to allow a unary operator in the Foo1 class that converts it to a Bar, when Foo1 is defined before Bar? class Foo1 { public: ...
0
votes
1answer
213 views

operator overloading in c++ ( with and without friend )

Hey, I would like to know the difference between these 2 operator definitions: 1: class Rational{ //... public: //... Rational operator -() const{ return Rational(-t,b);} //... }; 2: class ...
0
votes
4answers
169 views

Input Puzzler in C [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) int main() { int a=5,s; s=++a + ++a; printf("%d",a); printf("%d",s); } output is ...
0
votes
2answers
455 views

unary pointer increment in function call vs increment before/after function call

I am trying to understand a code, here is fragment which is causing confusion: typedef map<int, Person, less<int> > people_map; people_map people; . . . cout << "Erasing people of ...