1
vote
2answers
133 views
What is the difference between ~ and ! operator?
Please let me know the difference between ~ and ! operator in java.
3
votes
4answers
67 views
Can I use operators as function callback in PHP?
Suppose I've the following function:
function mul()
{
return array_reduce(func_get_args(), '*');
}
Is is possible to use the * operator as a callback function? Is there any o …
1
vote
5answers
220 views
What does ** operator do in Python?
What does this mean in python:
sock.recvfrom(2**16)
I know what sock is and I get the jest of recvfrom function, but what the hell is 2**16?
27
votes
6answers
766 views
What is the name of this operator: “-->”?
After reading this post on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:
#include <stdio.h>
int main …
2
votes
6answers
295 views
Does delphi have some “fast” operators ? (+=, -=, …)
Hello,
Very simple question but I couldn't find an answer on google
In delphi, is there a way to shorten this kind of code:
MyVar := MyVar + X;
Like in C++ I would do MyVar += …
2
votes
4answers
47 views
Comparison of conditional statements.
Are following ways are same.(Considering the evaluation time)
if(Condition1)
{
//code1
}
else
{
//code2
}
condition1 ? code1 : code2
Are they just synt …
0
votes
5answers
47 views
Overriding instance variable array’s operators in Ruby
Sorry for the poor title, I don't really know what to call this.
I have something like this in Ruby:
class Test
def initialize
@my_array = []
end
attr_accessor :my_arra …
2
votes
5answers
175 views
Should I Overload == Operator?
How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memor …
1
vote
4answers
199 views
What is the >>>= operator in Javascript?
What does the following Javascript statement do to a?
a >>>= b;
1
vote
2answers
164 views
What is the difference between “is” and “==” in python? [closed]
Possible Duplicate:
Python ‘==’ vs ‘is’ comparing strings, ‘is’ fails sometimes, why?
Is
a == b
the same as
a is b
?
If not, wha …
1
vote
4answers
58 views
Vectorising operators in C#
I spend much of my time programming in R or MATLAB. These languages are typically used for manipulating arrays and matrices, and consequently, they have vectorised operators for a …
3
votes
10answers
199 views
C# Operators and readability
I was just working on some code and caught myself making this error
if (stringName == "firstName" || "lastName")
// Do code
obviously this is wrong and should be
if (string …
3
votes
4answers
146 views
How can I pass an arithmetic operator to a template?
I want to somehow merge templates like these into one:
template <class Result, class T1, class T2>
class StupidAdd
{
public:
T1 _a; T2 _b;
StupidAdd(T1 a, T2 b):_a(a …
4
votes
5answers
336 views
Logical xor operator in c++?
Is there such a thing? First time I encountered a practical need for it, but I don't see one listed in stroustrup. I intend to write:
// Detect when exactly one of A,B is equal to …
5
votes
10answers
522 views
what is the official name of C++’s arrow (->) operator?
I think the subject says it all. I always call it the "arrow operator", but I'm sure it has an official name. I quickly skimmed the C++ standard and didn't see it mentioned by na …
