Tagged Questions
9
votes
5answers
419 views
Overload resolution failure when streaming object via implicit conversion to string
Disclaimer: I know that implicit conversion to string should be avoided, and that the proper approach would be an op<< overload for Person.
Consider the following code:
#include ...
9
votes
2answers
219 views
No implicit conversion in overloaded operator
d1 + 4 works but 4 + d1 doesn't even though 4 can be converted implicitly to a GMan. Why aren't they equivalent?
struct GMan
{
int a, b;
GMan() : a(), b() {}
GMan(int _a) : a(_a), b() {}
...
7
votes
3answers
84 views
Problems with constructor resolution order
Consider the following constructors for T:
struct T {
T(const bool) { std::cout << "T(const bool)" << endl; }
T(const std::string&) { std::cout << "T(const ...
5
votes
1answer
318 views
Problem with implicit conversion and null
I have this function
public static implicit operator MyClass(string v) { return new MyClass(v); }
and write var.myclass = null;. This calls the implicit operator and passes null as string, which ...
5
votes
6answers
1k views
C++ operator overloading and implicit conversion
I have a class that encapsulates some arithmetic, let's say fixed point calculations. I like the idea of overloading arithmetic operators, so I write the following:
class CFixed
{
CFixed( int );
...
4
votes
3answers
89 views
Implicit conversion when overloading operators for template classes
I would like to know why implicit type conversion doesn't work with outside operator overloading on class templates. Here is the working, non-templated version:
class foo
{
public:
foo() = ...
4
votes
3answers
213 views
Is it possible to overload the “as” or “is” operators
Is this allowed? If not, can this be accomplished inherently by overloading the implicit/explicit conversion operators?
3
votes
1answer
49 views
Operator overloading and implicit conversion to bool in relation to safe bool idiom
I'm sure that some of my questions may have been asked before, so please let me know :).
First, an example:
#include <iostream>
struct A
{
typedef void (A::*funcptr)();
operator ...
3
votes
3answers
100 views
Disallow functionality automatically provided by C++ compilers
Scott Meyers in his book "Effective C++" says,
To disallow functionality automatically provided by compilers, declare
the corresponding member functions private and give no
...
2
votes
2answers
304 views
Can I add an implicit conversion for two classes which I don't directly control?
I'd like to be able to implicitly convert between two classes which are otherwise incompatible.
One of the classes is Microsoft.Xna.Framework.Vector3, and the other is just a Vector class used in an ...
2
votes
1answer
112 views
Question about implicit operator overloading in c#
MyClass c = 10;
Is there any way to make this code work? I know that through the implicit operator overloading you can get the opposite to work:
int i = instanceOfMyClass;
Thanks
1
vote
2answers
118 views
Operator-function + with two implicit casts doesn't work
I'm trying to port some parts from ginac (www.ginac.de) to C#. But I encountered this:
class Program {
static void Main(string[] args) {
symbol s = new symbol();
numeric n ...
0
votes
5answers
117 views
Why can't I overload operator=?
I want to make following code work:
Mylist lst;
vector<int> v = lst;
So I see I need to convert my list into a vector.
I tried this code:
vector<int> operator=(vector<int> v, ...
0
votes
4answers
384 views
Why friend overloaded operator is preferred to conversion operator in this case
Hi I have a code like this, I think both the friend overloaded operator and conversion operator have the similar function. However, why does the friend overloaded operator is called in this case? ...