Tagged Questions
The up-casting tag has no wiki summary.
7
votes
2answers
77 views
In Java, why does type casting of a character to an integer NOT extend the sign bit
In Java a bitwise operation causes type casting to integer and also causes sign extension. For instance the following is expected:
byte b = -1;
System.out.println(b >> 1);//-1
In Java chars ...
7
votes
4answers
165 views
How to implement a compile-time check that a downcast is valid in a CRTP?
I have a plain old CRPT (please don't get distracted by access restrictions - the question is not about them):
template<class Derived>
class Base {
void MethodToOverride()
{
...
4
votes
8answers
131 views
up-casting in C# and call a specific method based on the derived type
I have a couple of classes, all derived from the same base type.
class basetype{}
class TypeA : basetype{}
class TypeB : basetype{}
...
A number of them is stored in a list.
List<basetype> ...
4
votes
7answers
137 views
Upcasting when making object
Say you have a Shape base class and various derived types: Circle, etc.
Is there ever any reason to upcast right there when making a new object, by writing this:
Shape s = new Circle();
instead of ...
4
votes
10answers
2k views
Does up casting in Java hide the subclass methods and fields?
On the program I'm writing I have a class RestrictedUser and class User that is derived from RestrictedUser. I'm trying to hide the User specific methods by casting to RestrictedUser but when I do the ...
3
votes
1answer
56 views
automatic upcast when you call function with null
This code prints out MyUrgentException. Could anybody explain why?
class MyException extends Exception{
}
class MyCriticalException extends MyException{
}
class MyUrgentException extends ...
2
votes
4answers
144 views
What are the disadvantages of “upcasting”?
The purpose of an abstract class is not to let the developers create an object of the base class and then upcast it, AFAIK.
Now, even if the upcasting is not required, and I still use it, does it ...
2
votes
6answers
153 views
Cant copy construction be done without creating an explicit function in the pure virtual base class?
My objective is to do a deep copy of a class, but a virtual class is causing trouble.
#include<iostream>
using namespace std;
class Vir//pure virtual class
{
public:
virtual void ...
2
votes
5answers
623 views
Upcasting pointer reference
I have the following contrived example (coming from real code):
template <class T>
class Base {
public:
Base(int a):x(a) {}
Base(Base<T> * &other) { }
virtual ~Base() {}
...
1
vote
2answers
39 views
Use Method by Real Type
I learned that I can use the real type of a Object to define which Method is used, such like this:
[...]
Object foo = new String("hello");
[...]
bla(foo);
void bla(String x){
}
void bla(Integer x){
...
1
vote
2answers
78 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)
{
...
1
vote
1answer
75 views
Converting a Derived Class to Base Class for WCF Serialisation
I have two classes...
[Serializable]
[DataContract]
public class A
{
[DataMember]
public string _a { get; set; }
[DataMember]
public bool _b ...
0
votes
1answer
45 views
Java Comparing two properties by object references
When overriding an equals property for one of my classes is it possible to implement it as so? The properties in question such as identifier could be String, boolean, Date, Set, or LinkedHashSet
...
0
votes
1answer
115 views
C++ A polymorphic class, virtual function and casting for performance
I have the following classes:
class State
{
protected:
Vec3D accel;
Vec3D gyro;
Vec3D gps;
float reward;
public:
boost::ptr_vector<Action> actions;
...
virtual ...
0
votes
8answers
143 views
How can I override a virtual method, but still invoke the base class version in C#
I have a simple class hierarchy where I have a virtual method that is overriden. But at certain callsites I want to call the base class version of this method rather than the virtual method.
For ...
0
votes
3answers
157 views
Upcasting without retaining reference to derived type
I have a class called Resource, this is inherited by a class called ResourceMeta
I need to upcast ResourceMeta to Resource without it still thinking it is a type of ResourceMeta.
When I try to save ...