2
votes
0answers
116 views
Why is g++ saying ‘no match for ‘operator=’ when there clearly is, and Visual Studio can see that there is?
I'm writing an interface library that allows access to variables within tables (up to a theoretically infinite depth) in an object of type regula::State. I'm accomplishing this by overloading …
0
votes
1answer
25 views
prolog syntax problem
I can't distinguish these symbols:
= and =:=
\= and =\=
[X,Y] and [X|Y]
What’s the difference ?
-1
votes
3answers
117 views
Ternary operator(condition) ?(val1) :(val2) [closed]
I have found a problem converting infix expressions to postfix. I have encountered the ternary conditional operator and I want to convert it to a postfix expression - how do I do this?
Thanx in …
0
votes
5answers
87 views
Way of processing a string of plus and minus operations
Hello,
I'm writing a java method that takes a string of plus and minus operations, eg
"+1+2+3-5" and I want it to return an int of the answer.
I'm trying to do this as efficiently as possible. …
1
vote
3answers
119 views
What does the percent sign mean in PHP?
What exactly does this mean?
$number = ( 3 - 2 + 7 ) % 7;
3
votes
4answers
149 views
When to use Shift operators << >> in C# ?
I was studying shift operators in C#, trying to find out
when to use them in my code.
I found an answer but for Java, you could:
a) Make faster integer multiplication and division operations:
…
0
votes
4answers
69 views
proper usage of the pre-increment operator in combination with the pointer dereference operator
I just wrote the following line of code:
if (++(data_ptr->count) > threshold) { /*...*/ } // example 1
My intent is to increment the count variable within the data structure that data_ptr …
5
votes
4answers
175 views
In F# what does the >> operator mean?
I noticed in some code in this sample that contained the >> operator:
let printTree =
tree >> Seq.iter (Seq.fold (+) "" >> printfn "%s")
What does the >> operator mean/do?
Thanks …
0
votes
2answers
59 views
Is there an easy way to compare two strings in a jsp?
I am creating a drop down list of all languages, with the language used when creating other info in the page as the default selected in the list:
<select>
<c:forEach items="${languages}" …
1
vote
11answers
293 views
Performance of C++ Operators
Is there any sort of performance difference between the arithmetic operators in c++, or do they all run equally fast? E.g. is "++" faster than "+=1"? What about "+=10000"? Does it make a significant …
1
vote
4answers
111 views
Javascript operator !==
What is the difference between the !== operator and the != operator. Does it behave similar to the === operator where it compares both value and the type?
0
votes
2answers
76 views
template class with overridden operators
I want to add a operator override to perform assignments/__set__s inline.
Template :-
class CBase {
public :
static void SetupVmeInterface(CVmeInterface *in);
protected :
…
7
votes
11answers
469 views
Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
Why did the designers of PHP decide to use a full stop / period / "." as the string
concatenation operator rather than the more usual plus symbol "+" ?
Is there any advantage to it, or any reason at …
1
vote
5answers
220 views
What’s the difference between ‘eq’ vs ‘==’ in PHP? [closed]
Hi,
First, I tried searching for different variations of the title I've put for this question, both in StackOverflow and google. I couldn't find a solution.
I am fairly new to php. New enough to not …
1
vote
4answers
78 views
php is not equal to and is not equal,equal to
I keep seeing variations of this:
Not equal
!=
Not equal, equal
!==
Which one is the standard or do they have different meanings?
I am guessing the latter also checks the value and the name if …
