我有一个具有构造函数
的类\
我需要实例化一个具有类t的数组。我如何实例化它?
答案 0 :(得分:0)
这取决于您的确切目标。如果你想要任意的东西,那就去反思吧。如果您只想传递一个继承类的对象,则可以使用不同的语法来完成。
由于您的示例使用的是Class,请尝试以下反射示例:
我认为这里接受的答案就是你要找的。 Java Generics Creating Array from Class
还有一点:
.box1 {
width: 50%;
padding: 15px;
height: 150px;
background: url(https://static.pexels.com/photos/27714/pexels-photo-27714.jpg) no-repeat center center scroll;
background-position: 50% 50%;
background-size: 90%;
margin: 0 auto;
}
.box2 {
width: 80%;
padding: 15px;
background-color: blue;
color: #fff;
margin: 0 auto;
margin-top: 80px;
}
.box3 {
background-color: #ccc;
text-align: center;
}
<div class="container">
<div class="box1">
<div class="box2">
Box 2:
</div>
<div class="box3">
Box 3:
</div>
</div>
</div>