作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这个问题有时会得到解答。但参数始终是一个对象。这就是我想要替换的:
if (s.equals("A")) { add (obj = new A(x,y)); }
if (s.equals("B")) { add (obj = new B(x,y)); }
if (s.equals("C")) { add (obj = new C(x,y)); }
我有这个:
try
{
Class cl = Class.forName(s);
Constructor con = cl.getConstructor (x, y);
obj = con.newInstance(x, y);
}
但它期望 x,y 作为一个类,但它是一个 int。如何做到这一点>
最佳答案
你需要
cl.getConstructor(int.class, int.class);
存在反射(reflect)原始类型的 Class
对象,甚至 void
类型在 Void.class
中也有反射对应项。
关于java - 如何在java中从带参数的字符串动态创建实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16896900/
我是一名优秀的程序员,十分优秀!