Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

24
votes
3answers
552 views

Are there pronounceable names for common Haskell operators?

I'm reading Learn You a Haskell for Great Good, and I never know how to pronounce the Haskell operators. Do they have "real" names? ? For instance, how do you read aloud an expression like this one? ...
14
votes
4answers
467 views

Overloading operator ->

Here is my code example: class X { public: void f() {} }; class Y : public X { public: X& operator->() { return *this; } void f() {} }; int main() { Y t; ...
14
votes
4answers
736 views

Why overload true and false instead of defining bool operator?

I've been reading about overloading true and false in C#, and I think I understand the basic difference between this and defining a bool operator. The example I see around is something like: public ...
12
votes
2answers
309 views

Question about the ~ and @ operators in Haskell

What exactly do they do? I know one possible use of @ (assigning a name at the start of a pattern match), but haven't been able to find anything on ~. I found them in the following code snippet, ...
11
votes
5answers
352 views

why there is no sizeof in java

For what design reason there is no sizeof operator in java? knowing that it is very useful in c++ and c# and how you can get the size of a certain type if needed?
11
votes
1answer
142 views

Can a cast operator be explicit?

When it comes to constructors, adding the keyword explicit prevents an enthusiastic compiler from creating an object when it was not the programmer’s first intention. Is such mechanism available for ...
11
votes
1answer
248 views

Fixity of backtick operators?

What is the fixity of backtick operators? For instance in this code from Real World Haskell: ghci> (1+) `fmap` [1,2,3] ++ [4,5,6] [2,3,4,4,5,6] It's evident the backtick operator `fmap` has a ...
10
votes
2answers
293 views

Using C# types to express units of measure

I'm trying to get what I call measurement units system by wrapping double into struct. I have C# structures like Meter, Second, Degree, etc. My original idea was that after compiler is inlined ...
9
votes
5answers
172 views

C++ Operator Problem

I don't know if this question is already answered on stackoverflow. But I simply can not find the right keyword to search for. I inserted some stripped down version of my code below. So basically ...
9
votes
1answer
264 views

implementing a cast operator in a generic abstract class

I'm trying to be lazy and implement the cast operators in the abstract base class rather than in each of the derived concrete classes. I've managed to cast one way, but I'm unable to cast the other. ...
9
votes
2answers
404 views

new operator for memory allocation on heap

I was looking at the signature of new operator. Which is: void* operator new (std::size_t size) throw (std::bad_alloc); But when we use this operator, we never use a cast. i.e int *arr = new int; ...
9
votes
2answers
486 views

C extension: <? and >? operators

I observed that there was at some point a <? and >? operator in GCC. How can I use these under GCC 4.5? Have they been removed, and if so, when? Offset block_count = (cpfs->geo.block_size - ...
9
votes
8answers
243 views

Who deletes the copied instance in + operator ? (c++)

I searched how to implement + operator properly all over the internet and all the results i found do the following steps : const MyClass MyClass::operator+(const MyClass &other) const { ...
8
votes
3answers
186 views

Bitwise “~” Operator in C#

Elementary question asked by someone who's weak on binary numbers. [TestMethod] public void RunNotTest() { // 10101100 = 128 + 32 + 8 + 4 = 172 byte b = 172; // ...
8
votes
2answers
442 views

Prolog GNU - Univ operator? Explanation of it

So the univ operator. I don't exactly understand it. For example this: foo(PredList,[H|_]) :- bar(PredList,H). foo(PredList,[_|T]) :- foo(PredList,T),!. bar([H|_],Item) :- G =.. [H,Item],G. ...
8
votes
12answers
464 views

What division operator symbol would you pick?

I am currently designing and implementing a small programming language as an extra-credit project in a class I'm taking. My problem is that the language has three numeric types: Long, Double, and ...
7
votes
6answers
346 views

Is it not possible to call C++ operators manually?

I'm trying to understand operators in C++ more carefully. I know that operators in C++ are basically just functions. What I don't get is, what does the function look like? Take for example: int x ...
7
votes
4answers
238 views

C# logical operation question

why this is true: (true | false & false) and this is false: (true | false && false) in my mind should be the oposite..
7
votes
6answers
280 views

Trouble with inheritance of operator= in C++

I'm having trouble with the inheritance of operator=. Why doesn't this code work, and what is the best way to fix it? #include <iostream> class A { public: A & operator=(const A & ...
7
votes
3answers
195 views

Why do I need the `new` keyword for an instance of `Date` in JavaScript?

I understand the difference in behavior. Date() returns a String representing the current date, and new Date() returns an instance of the Date object whose methods I can call. But I don't know why. ...
6
votes
2answers
91 views

Overloading multiple operators

Concisely, my goal is to have foo[bar] return type1, and foo[bar]= return type2. I am writing an object in C++, and it's coming along quite nicely, however there's just one tiny little thing that I ...
6
votes
2answers
167 views

What does the dot mean in R – personal preference, naming convention or more?

I am (probably) NOT referring to the "all other variables" meaning like var1~. here. I was pointed to plyr once again and looked into mlplyand wondered why parameters are defined with leading dot ...
6
votes
3answers
301 views

Overloaded new operator problems

I decided to overload the new, new[],... operators in my classes so I can log the file and line at which they were called so I can easier track memory allocations/leaks. Now the problems is in my ...
6
votes
3answers
261 views

Limitations of the conditional operator ?:

I am using GCC 4.5 and have observed very peculiar behavior. I am wondering if there is something with this operator that I do not completely understand. I thought I was proficient in C++. I have a ...
6
votes
3answers
760 views

Double Address Operator? (&&)

I am reading STL source codes and I have no idea what && address operator is supposed to do. Here is a code example from stl_vector.h. vector& operator=(vector&& __x) // <-- ...
6
votes
9answers
522 views

Overriding == operator. How to compare to null?

There is probably an easy answer to this...but it seems to be eluding me. Here is a simplified example: public class Person { public string SocialSecurityNumber; public string FirstName; ...
6
votes
3answers
313 views

Use list cons operator (a :: b) as a function

F# lets you turn operators into functions by surrounding them with ( ): for instance, (+) is of type int -> int -> int. Is it possible to do this with the list cons operator, ::? It doesn't ...
6
votes
3answers
176 views

Does the ``??`` operator use shortcircuiting?

Does the ?? operator in C# use shortcircuiting when evaluating? var result = myObject ?? ExpressionWithSideEffects(); When myObject is non-null, the result of ExpressionWithSideEffects() is not ...
6
votes
4answers
845 views

Scala :: operator, how it works?

in Scala, I can make a caseclass case class Foo(x:Int) and then put it in a list like so: List(Foo(42)) Now, nothing strange here. The following is strange to me. The operator :: is a function on a ...
6
votes
3answers
617 views

post increment operator java

I can't make heads or tails of the following code from "java puzzlers" by joshua bloch. public class Test22{ public static void main(String args[]){ int j=0; for(int i=0;i<100;i++){ ...
6
votes
2answers
2k views

C++ [] array operator with multiple arguments?

Can I define in C++ an array operator that takes multiple arguments? I tried it like this: const T& operator[](const int i, const int j, const int k) const{ return ...
6
votes
4answers
5k views

C++ const std::map reference fails to compile

Is there a reason why passing a reference to a STL map as const causes the [] operator to break? I get this compiler error (gcc 4.2) when I use const: error: no match for ‘operator[]’ in ...
6
votes
8answers
2k views

Bitwise AND, Bitwise Inclusive OR question, in Java

I've a few lines of code within a project, that I can't see the value of... buffer[i] = (currentByte & 0x7F) | (currentByte & 0x80); It reads the filebuffer from a file, stored as bytes, ...
5
votes
4answers
114 views

Operator -> doesn't work as expected in C++

I was practicing single linked list in c++ (practicing how to find the beginning node of the circular list), but found the use of operator -> very confusing. I'm using Visual studio 2010 C++ Express ...
5
votes
3answers
223 views

Why not provide an operator ? : in scala [closed]

There is an operator ? : in Java which can be used to select a value according to the boolean expression. For example, the expression 3 > 2 ? "true" : false will return a string "true". I know we ...
5
votes
1answer
444 views

Change the Network Operator with an Android App

I'm trying to develop an Android App which shows the signal strength of various network operators on a map. The problem is that the only way to change the network operator is by doing it by hand. ...
5
votes
3answers
182 views

C# - Operator Overloading causes a stack overflow

I started out programming with C# a few days ago. Now an confusing error arised when playing around with operator overloading. The following code produces a StackOverflowException when running: ...
5
votes
2answers
219 views

XPath operator “!=”. How does it work?

XML document: <doc> <A> <Node>Hello!</Node> </A> <B> <Node/> </B> <C> </C> ...
5
votes
4answers
500 views

Passing operator as a parameter

I want to have a function that evaluates 2 bool vars (like a truth table) for example: since T | F : T then myfunc('t', 'f', ||); /*defined as: bool myfunc(char lv, char rv, ????)*/ should ...
5
votes
2answers
521 views

Understanding infix method call and cons operator(::) in Scala

I'm quite new to Scala programming language, and was trying something out stucked in my mind while I was following the lecture notes at here. I think I couldn't really understand how cons operator ...
5
votes
4answers
610 views

Haskell operator vs function precedence

I am trying to verify something for myself about operator and function precedence in Haskell. For instance, the following code list = map foo $ xs can be rewritten as list = (map foo) $ (xs) ...
5
votes
4answers
373 views

Implementing operator< in C++

I have a class with a few numeric fields such as: class Class1 { int a; int b; int c; public: // constructor and so on... bool operator<(const Class1& other) const; }; I ...
5
votes
4answers
1k views

Operator Overloading in C++ as int + obj

I have following class:- class myclass { size_t st; myclass(size_t pst) { st=pst; } operator int() { return (int)st; } int operator+(int intojb) ...
5
votes
3answers
2k views

Reference-type conversion operators: asking for trouble?

When I compile the following code using g++ class A {}; void foo(A&) {} int main() { foo(A()); return 0; } I get the following error messages: > g++ test.cpp -o test test.cpp: In ...
4
votes
5answers
56 views

Use operators on objects

i am working on a project that has an object called Vector2 public static class Vector2 { public Vector2 (float x, float y) { this.x = x; this.y = y; } ...
4
votes
1answer
92 views

What operator do I overload when assigning an “Enhanced Record” to a normal “Data Type” variable?

I need to know, first and foremost, if what I'm trying to do is even possible. If it is possible, I then need to know how. It's far easier to demonstrate the problem rather than explain it so here ...
4
votes
2answers
80 views

Something unclear with operator delete

I am new to C++ and I have something unclear: #include <iostream> using namespace std; double* foo(void) { double* b = new double[100]; return b; } int main() { double* a = foo(); ...
4
votes
1answer
125 views

Can I override colon operator in Lua?

Lua is using colon operator (:) as instance method calling. Can I override this operator for another purpose?
4
votes
1answer
67 views

Overloaded operator doesn't get detected

A little back ground first, I've made a doubly linked list using templates. I have an "account" class in which I've overloaded the "==" operator to compare the account ID's. I've created a linked list ...
4
votes
3answers
128 views

php, perl, question. what does this mean: “ $variable -> do some sort of function ”

I have seen this (example: $variable -> define something) in both perl and php but I never really used it before. What is the purpose of this operator -> Does it assign a value or pass a param? ...

1 2 3 4 5 7