A language feature to allow an object to specify how it can be converted to another type, either implicitly to satisfy a type restriction or explicitly.
2
votes
1answer
56 views
Conversion operator is slicing my object
I'm getting unexpected behavior from the following code:
struct Base
{
Base() {}
virtual ~Base() {}
virtual void foo() const = 0;
protected:
Base(const Base &) {}
};
struct ...
21
votes
1answer
208 views
Ambiguity involving templated conversion operator and implicit copy constructor
clang and gcc differ in behaviour for the following code:
struct foo
{
foo(int);
};
struct waldo
{
template <typename T>
operator T();
};
int main()
{
waldo w;
foo f{w};
}
...
0
votes
5answers
81 views
how to convert a built-in type to user-defined type
I have a class called BigInteger which supports big integer operation. I want to implement mixture operation between BigInteger and built-in type 'int'. In other word, I want to support following ...
1
vote
2answers
87 views
C# how to make a class that behave like Nullable<T>
Given the code:
public class Filter<T>
{
private bool selected = false;
public bool Selected { get { return selected; } }
private T value;
public T Value { get{ return ...
1
vote
1answer
62 views
How to have virtual functions that returns different types based on the class to which it belongs without including dummy implementation in Base?
I need a class hierarchy in which the derived classes will have implementation of a virtual function that differs in the return type. How can i do it. What i have tried is the following code:
using ...
3
votes
2answers
148 views
c++ how to specify arguments for a class' templated conversion operator
I'm trying to specify template arguments for a class' templated conversion operator, but I can't seem to get the syntax right.
#include <iostream>
using namespace std;
class C
{
int i_;
...
1
vote
1answer
53 views
What does it mean that the conversion operator is “still valid” in a derived class
class Game {
class Other {}; // Nested class
// Automatic type conversion:
operator Other() const {
cout << "Game::operator Other()\n";
return Other();
}
};
class Chess : ...
-1
votes
1answer
96 views
functions that don't automatically inherit in c++ [closed]
class GameBoard {
public:
GameBoard() { cout << "GameBoard()\n"; }
GameBoard(const GameBoard&) {
cout << "GameBoard(const GameBoard&)\n";
}
GameBoard& ...
7
votes
1answer
175 views
Difference between return value and local variable
Suppose I have
#include <string>
class A
{
public:
template<class T>
operator T();
A child();
};
void f()
{
A a;
std::string s1 = a; // ok
...
2
votes
4answers
178 views
C++ multiple operator=()
I'm writing a String class. I'd like to be able to assign my strings such as;
a = "foo";
printf(a);
a = "123";
printf(a);
int n = a; // notice str -> int conversion
a = 456; // notice int -> ...
3
votes
1answer
109 views
Distinguishing between user-defined conversion sequences by the initial standard conversion sequence
The standard appears to provide two rules for distinguishing between implicit conversion sequences that involve user-defined conversion operators:
c++11
13.3.3 Best viable function ...
1
vote
2answers
156 views
How do I do bit operations on a struct?
I have a bitfield struct on which I want to perform bitwise operations using masks.
I want to know the simplest and most efficient way to do this.
I have tried using my conversion operator (which ...
0
votes
1answer
128 views
Pointer conversion, cannot convert Two* to One*
Say I have two classes, One and Two. One and Two are essentially the same, but Two can convert into One.
#ifndef _ONE_H_
#define _ONE_H_
class One
{
private:
float m_x;
float m_y;
public:
...
8
votes
3answers
614 views
Ambiguous string::operator= call for type with implicit conversion to int and string
Given the following program:
#include <iostream>
#include <string>
using namespace std;
struct GenericType{
operator string(){
return "Hello World";
}
operator int(){
...
2
votes
2answers
89 views
.net operator overloading??? type conversion operator, how exactly it works?
I have first encounter operator overloading in .Net, long back I had used it in C++, but that was like overloading operators like "+", now I have suddenly scenario as below.
I have a struct ...
6
votes
1answer
977 views
C++ Implicit Conversion Operators Precedence
EDIT: Following Mike Seymour's comment, I replaced operator std::string () const; with operator char * () const; and changed the implementation accordingly. This allows implicit casting, but, for some ...
7
votes
2answers
296 views
Conversion operator implemented with static_cast
I ask this question following the issue I raised here.
The point is quite simple. Suppose you have two classes of this kind:
template < class Derived >
class Base {
...
operator const ...
1
vote
2answers
126 views
Is a Conversion Operator Valid in this Case?
Usually, books usually discourage the use of conversion operators when wrapping up c structs. For example the c++ string, which is (believed to be) a wrapper of a C char array, does not provide a ...
3
votes
3answers
239 views
C++ conversion operator and overload resolution
Given this example, which includes a few overloads:
#include <iostream>
class T
{
public:
operator const wchar_t *(void) const
{
std::cout << "Conversion" ...
1
vote
2answers
132 views
Acceptable programming practice - conversion and upcasting
Is the following acceptable programming practice:
class TestA
{
protected:
int A;
public:
TestA(){A = 10;}
TestA &operator=(const TestA &ItemCopy)
{
...
15
votes
4answers
1k views
C++ Conversion operator for converting to function pointer
I'm been grinding my head against an idea that is simple enough in my head, but I can't figure out how to implement in C++.
Normally, I can declare a class with a conversion operator like in this ...
2
votes
1answer
49 views
sequence of conversions with contsructor-type conversions and conversion operators
I have read that a standard conversion can precede or follow a conversion implemented by a conversion operator or a contructor type conversion. On the other hand,
a sequence of two conversion ...
8
votes
5answers
7k views
What is the meaning of “operator bool() const” in C++
For example in airplaysdk:
operator bool() const
{
return col!=0;
}
col is an int.
How does operator bool() const work?
2
votes
4answers
930 views
Type Conversion/Casting Confusion in C++
Can somebody explain to me, what is Type Conversion and what is Type Casting? When should I use each of them? I'm sorry if this is an obvious question, but I'm new and come from a ruby background and ...
5
votes
5answers
5k views
What is an “operator int” function?
What is the "operator int" function below? What does it do?
class INT
{
int a;
public:
INT(int ix = 0)
{
a = ix;
}
/* Starting here: */
operator int()
{
return a;
...
0
votes
2answers
1k views
invalid cast to type 'float'
I'm having problem with my class. I'm going to make comparision operators of my class.
Some code:
CVariable::operator float ()
{
float rt = 0;
std::istringstream Ss (m_value);
Ss >> ...
1
vote
6answers
229 views
Automatically converting an A* into a B*
Suppose I'm given a class A. I would like to wrap pointers to it into a small class B, some kind of smart pointer, with the constraint that a B* is automatically converted to an A* so that I don't ...
3
votes
5answers
5k views
Const operator overloading problems in C++
I'm having trouble with overloading operator() with a const version:
#include <iostream>
#include <vector>
using namespace std;
class Matrix {
public:
Matrix(int m, int n) {
...
4
votes
1answer
344 views
Can you catch an exception by the type of a conversion operator?
I don't know how to phrase the question very well in a short subject line, so let me try a longer explanation. Suppose I have these exception classes:
class ExceptionTypeA : public ...
2
votes
3answers
2k views
STL: how to overload operator= for <vector>?
There's simple example:
#include <vector>
int main() {
vector<int> veci;
vector<double> vecd;
for(int i = 0;i<10;++i){
veci.push_back(i);
vecd.push_back(i);
}
vecd = ...
5
votes
5answers
653 views
C++: Overloading operator=
Okay so I have a class that has 'weak typing' I.E. it can store many different types defined as:
#include <string>
class myObject{
public:
bool isString;
std::string strVal;
...
5
votes
5answers
1k views
explicit copy constructor or implicit parameter by value
I recently read (and unfortunately forgot where), that the best way to write operator= is like this:
foo &operator=(foo other)
{
swap(*this, other);
return *this;
}
instead of this:
...
2
votes
2answers
412 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 write it?
I think I ...
16
votes
2answers
5k views
Conversion constructor vs. conversion operator: precedence
Reading some questions here on SO about conversion operators and constructors got me thinking about the interaction between them, namely when there is an 'ambiguous' call. Consider the following code:
...
9
votes
6answers
3k views
How do conversion operators work in C++?
Consider this simple example:
template <class Type>
class smartref {
public:
smartref() : data(new Type) { }
operator Type&(){ return *data; }
private:
Type* data;
};
class ...
2
votes
5answers
1k views
Swig C++ Lua Pass class by reference
I don't know why I'm having a hard time with this. All I want to do is this:
class foo {
public:
foo(){}
~foo(){}
float a,b;
};
class foo2 {
public:
foo2(){}
foo2(const foo ...
17
votes
4answers
2k views
Why does virtual assignment behave differently than other virtual functions of the same signature?
While playing with implementing a virtual assignment operator I have ended with a funny behavior. It is not a compiler glitch, since g++ 4.1, 4.3 and VS 2005 share the same behavior.
Basically, the ...
3
votes
6answers
2k views
Operator = Overload with Const Variable in C++
I was wondering if you guys could help me.
Here are my .h:
Class Doctor {
const string name;
public:
Doctor();
Doctor(string name);
Doctor & Doctor::operator=(const ...