English 中文(简体)
为 Java的一个班级创建违约通用类型
原标题:Creating default generic type for a class in Java

我想制造一个具有两种通用类型,但在某些地方,只给出一个通用类型。 在这些情况下,第二类没有重要意义,因此,我希望能够提出一种选择,即只设立一种通用的类别,而另一种通用的类别则不为反对而设,而这种情况将像(C++风格):

public class myClass<T,O=Object> {...
}

自2006年以来 我知道在 Java有没有违约的数值,但我并不期望存在违约类型,但是否有任何办法制造一些类似的东西(可能属于类别)?

最佳回答

Creating a subclass seems to be an overhead I would use a static factory method.

public class MyClass<T, O> {
    ...

    <T> public static MyClass<T, Object> create(...)
    ...
}
问题回答

实现这一点的典型办法是将“米拉斯”分类。

这就是说,相信你会


public class MyClass<T, O>
{}

页: 1


public class DefaultMyClass<T> extends MyClass<T, Object>
{}

这也许不是你想要的,而是实现这一点的唯一途径。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签