The binary-operators tag has no wiki summary.
3
votes
1answer
50 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
0answers
41 views
Efficient modulus division by a fixed divisor (using only primitive binary operands)
I have an 8-bit microcontroller that does have an integer multiplication unit, but does NOT have a hardware division or modulus instruction.
What I need to do is to perform modulus division for a ...
1
vote
3answers
54 views
Bash null binary operators
A recent test I took had a question on the output of the following bash command:
var=; [ -n $var ]; echo $?; [ -z $var ]; echo $?
The results are 0 and 0, indicating the return codes for both unary ...
2
votes
3answers
225 views
C++ matrix class overloaded operators returning by reference
I'm writing templated matrix class, and I get stack overflows when returning by value from operators: +,-,* for larger matrices. I would prefer to somehow return by reference to relieve the stack and ...
2
votes
1answer
77 views
type promotion in C and type casting
I have the following variables:
UWORD64 length;
UWORD32 thumbnail_offset;
UWORD32 thumbnail_length;
UWORD64 sum;
And this is what I want to do:
sum = (UWORD64)(thumbnail_offset + ...
2
votes
1answer
98 views
how to find the longest zero sequence in binary form of integer in assembly?
how to find the longest zero sequence in binary form of integer in assembly?
I can use shift, or, xor, nor and other logical operations. I can find the sequence of ones in such algorithm:
1) Shift
2) ...
-1
votes
1answer
141 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 ...
1
vote
3answers
728 views
C reverse binary [duplicate]
Possible Duplicate:
C reverse bits in unsigned integer
How can I reverse a binary number only using binary operators?
E.g:
11100000 -> 00000111
00110100 -> 00101100
00111111 -> ...
0
votes
1answer
85 views
Custom class comparison needed for binary_search()
I have a custom class and std::vector filled with objects of this class. And I want to do binary_search in this array.
I've overloaded operators on my class like this:
bool operator ==(const ...
0
votes
1answer
315 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 ...
2
votes
1answer
430 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 ...
0
votes
4answers
121 views
can't assign iterator to constant input vector in a binary function
I am trying to write a binary function that takes two vectors(of the same length) and adds them by value. For some reason the following code does not work:
struct Plusval : binary_function ...
0
votes
0answers
85 views
fractional binary subtraction
I am having difficulty understanding why the following binary subtraction gives the result that it does. I keep getting a different answer. I am trying to compute 0.1-x such that x is ...
1
vote
3answers
406 views
Integer constant is too large for its type AND invalid operands to binary operators
I'm using double long in my 64 bit computer and sizeof(double long) is 16 bytes.
So I do the following assignment:
long double f = 0xA0000000000000000000000000000000; // 32 characters in hex
and ...
2
votes
1answer
193 views
Convert non terminating binary number to decimal
I don't know how to convert a non terminating binary number(fraction) to decimal . Can anybody guide me how to do with an example?
2
votes
4answers
136 views
C++ Bus error when using `^=` and `<<` on a class member `unsigned long`
I am trying to implement the random number generator defined in this answer. There is some ambiguity, at least from my knowledge, as to how the first line, static unsigned long x=123456789, ...
2
votes
5answers
494 views
Is there any XOR bit reduction operand or function?
Is there any XOR bit reduction operand or function in python? I have no problem to write it by yourself, but there's no reason to write it in every script if there's already built-in.
r=x&1
for i ...
0
votes
2answers
301 views
Two's Complement Addition issues
I'm working on Two's complement addition. Basically I need to show the addition of -27 to +31, with both numbers in binary using 6 bits.
My problem is with carry operations. Maybe I'm not doing it ...
1
vote
2answers
318 views
C#: Binary Operator Overloading : Without containing type?
Is there anyway to overload a binary operator without have the containing type or using an extension method?
I want to override the == operator between two byte arrays, and hopefully, without an ...
2
votes
2answers
112 views
I'm really bad at math and I want to do a binary operation
I have the following piece of code:
public void AddHash( int val )
{
m_Hash ^= (val & 0x3FFFFFF);
m_Hash ^= (val >> 26) & 0x3F;
}
I would like very much to ...
2
votes
1answer
203 views
Binary shift of int not possible
usigned int val = 1;
val <<= 30;
cout << intToBin(val) << endl;
string intToBin(unsigned int val) {
unsigned int k=1;
string ret;
while (k <= val) {
if (k ...
1
vote
5answers
256 views
preprocessor macros i don't understand
i'm currently looking through some source code i found on the net, which makes use of preprocessor macros in a way i don't understand. it implements the quad-edge data-structure.
hope, someone can ...
0
votes
2answers
840 views
How can I write custom comparison (definition for binary operator Equal) for entityframework object to an int?
I'm getting this error:
ex = {"The binary operator Equal is not defined for the types 'MySite.Domain.DomainModel.EntityFramework.NickName' and 'System.Int32'."}
What I tried to do was do a ...
1
vote
2answers
49 views
Will (variable or {}) work crossbrowser in Javascript?
The if(variable) clause in the following constructs checks if list/array is not null/undefined, to avoid an exception:
if (list)
for (var k in list) {
...
if (array)
for (var i = ...
3
votes
5answers
2k views
c++ multiple enums in one function argument using bitwise or “|”
I recently came across some functions where you can pass multiple enums like this:
myFunction(One | Two);
Since I think this is a really elegant way I tried to implement something like that myself:
...
8
votes
4answers
922 views
Why does this bitwise shift-right appear not to work?
Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same.
unsigned mask = ~0 >> 1;
printf("%u\n", ...
353
votes
4answers
81k views
Absolute Beginner's Guide to Bit Shifting?
I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ...
What I'm wondering is, at a core level, what does ...
2
votes
5answers
2k views
C++ Binary operators order of precedence
In what order are the following parameters tested (in C++)?
if (a || b && c)
{
}
I've just seen this code in our application and I hate it, I want to add some brackets to just clarify the ...


