0
votes
4answers
62 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
160 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
287 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 …
0
votes
2answers
50 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
97 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?
7
votes
11answers
460 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
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 :
…
1
vote
5answers
213 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
74 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 …
7
votes
3answers
187 views
C# lambda expression reverse direction <=
I have seen some code uses <=.Can you explain what is use of having lambda in reverse direction?
0
votes
3answers
80 views
Is there a difference on how java performs operations using shortcut operators from the regular ones?
I am working on a java program concerning the pascal's triangle.
So this is how it is coded:
for(int i = 0; i < 5; i++){
for(int j = 0, x = 1; j <= i; j++){
System.out.print(x + " …
0
votes
3answers
77 views
What’s the -> operator in Prolog and how can I use it?
I've read about it in a book but it wasn't explained at all. I also never saw it in a program. Is part of Prolog syntax? What's it for? Do you use it?
Thanks
167
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 = …
5
votes
6answers
350 views
Is there an Non-Short circuited logical “and” in C++?
tl;dr: Is there a non-short circuit logical AND in C++ (similar to &&)?
I've got 2 functions that I want to call, and use the return values to figure out the return value of a 3rd composite …
7
votes
9answers
225 views
What’s the difference between ++$i and $i++ in PHP?
What's the difference between ++$i and $i++ in PHP?
