1
vote
2answers
50 views
Assignment operator in php
I am having a hard time determining what the =& (equals-ampersand) assignment operator does in PHP. Can anyone explain it? Is it deprecated? Thanks!
1
vote
6answers
78 views
Declaring functors for comparison ??
Hello, I have seen other people questions but found none that applied to what I'm trying to achieve here.
I'm trying to sort Entities via my EntityManager class using std::sort an …
1
vote
5answers
117 views
Equality Test for Derived Classes in C++ [closed]
Possible Duplicate:
What’s the right way to overload operator== for a class hierarchy?
In C++, how can derived classes override the base class equality test in a mea …
3
votes
3answers
112 views
templated operator() overload C++
someone already asked this question, but the thread ended up with the original question not getting answered.
suppose you have this:
template<size_t i, class f_type>
void c …
4
votes
7answers
197 views
C++ array delete operator syntax
After I do, say
Foo* array = new Foo[N];
I've always deleted it this way
delete[] array;
However, sometimes I've seen it this way:
delete[N] array;
As it seems to compile and …
5
votes
4answers
166 views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global sc …
0
votes
2answers
122 views
Common way to call mother-class operator= in C++?
Let's suppose I have a class Dog that inherits from class Animal,
you might want to insert a call to Animal::operator= in Dog::operator=.
What is the most readable/common way to w …
1
vote
2answers
79 views
Speed difference: separate functor VS operator() inside a big class with *this
I'm using the c++ STL heap algorithms, and I wrote a wrapper class around it so I could do some other stuff. When I tried to use the code below, for example:
//! Min-heap wrapper …
0
votes
4answers
157 views
Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?
(Note: I'm writing this project for learning only; comments about it being redundant are... uh, redundant. ;)
I'm trying to implement a random access iterator, but I've found very …
0
votes
4answers
105 views
Overloading operator>> to a char buffer in C++ - can I tell the stream length?
I'm on a custom C++ crash course. I've known the basics for many years, but I'm currently trying to refresh my memory and learn more. To that end, as my second task (after writing …
0
votes
1answer
137 views
C++ operator[] syntax.
Just a quick syntax question. I'm writing a map class (for school).
If I define the following operator overload:
template<typename Key, typename Val> class Map {...
Val* o …
2
votes
4answers
123 views
Can I replace the binding operator with the smart match operator in Perl?
How can I write this with the smart match operator (~~)?
use 5.010;
my $string = '12 23 34 45 5464 46';
while ( $string =~ /(\d\d)\s/g ) {
say $1;
}
15
votes
9answers
826 views
What _did_ the C operators /\ and \/ do?
Anyone can "declare" ones own operators in C.... that is if one is a C compiler guru and has the source code to the C compiler! ;-)
Further questions to puzzle:
How are these op …
0
votes
2answers
44 views
using LIKE with logical operators
i can't seem to figure out how to combine LIKE with an OR or AND:
DELETE * FROM persons WHERE FirstName = 'Abe' AND LastName LIKE '%coln';
Looks like it should owrk to me but I …
1
vote
8answers
192 views
Index, assignment and increment in one statement behaves differently in C++ and C#. Why?
Why is this example of code behaving differently in c++ and C#.
[C++ Example]
int arr[2];
int index = 0;
arr[index] = ++index;
The result of which will be arr[1] = 1;
[C# Exam …
