Tagged Questions

2
votes
0answers
52 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
116 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 …
3
votes
4answers
148 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: …
1
vote
3answers
119 views

What does the percent sign mean in PHP?

What exactly does this mean? $number = ( 3 - 2 + 7 ) % 7;
0
votes
5answers
85 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. …
169
votes
14answers
7k 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() { int x = …
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
174 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 …
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 …
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 …
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
4answers
109 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?
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 …
7
votes
3answers
188 views

C# lambda expression reverse direction <=

I have seen some code uses <=.Can you explain what is use of having lambda in reverse direction?

1 2 3 4 5 12 next
15 30 50 per page