-2

I have created class A. I want String "hi" to be assigned to type A.is it possible.if yes,how.please help. How we can cast string user defined class type.

4

2 回答 2

1

这是不可能的,inconvertible types如果你试图这样做,你会得到错误A yourObject = (A) new String("A")

  • 仅当这两种类型位于同一层次结构中时,您才能执行向下转换操作。
  • String不属于的层次结构,A所以它给出了错误inconvertible types
于 2013-07-30T09:32:17.707 回答
1

除非您的班级是班级,否则不可能将 a 分配String给您的班级。如果您尝试将 a 存储在您的类中,那么您需要一个实例字段和该实例字段的设置器。AAStringString

于 2013-07-30T09:32:34.640 回答