- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试创建一个只能容纳两个对象之一的类,我想用泛型来实现。这是想法:
public class Union<A, B> {
private final A a;
private final B b;
public Union(A a) {
this.a = a;
b = null;
}
public Union(B b) {
a = null;
this.b = b;
}
// isA, isB, getA, getB...
}
当然这不会起作用,因为由于类型删除,构造函数具有相同的类型签名。我意识到一个解决方案是让一个构造函数接受这两个值,但我希望其中一个值是空的,因此使用单参数构造函数似乎更优雅。
// Ugly solution
public Union(A a, B b) {
if (!(a == null ^ b == null)) {
throw new IllegalArgumentException("One must exist, one must be null!");
}
this.a = a;
this.b = b;
}
对此有优雅的解决方案吗?
Edit 1: I am using Java 6.
Edit 2: The reason I want to make this is because I have a method that can return one of two types. I made a concrete version with no generics but was wondering if I could make it generic. Yes, I realize that having a method with two different return types is the real issue at hand, but I was still curious if there was a good way to do this.
I think durron597's answer is best because it points out that
Union<Foo, Bar>
andUnion<Bar, Foo>
should act the same but they don't (which is the main reason why I decided to stop pursuing this). This is a much uglier issue than the "ugly" constructor.For what it's worth I think the best option is probably make this abstract (because interfaces can't dictate visibility) and make the
isA
andgetA
stuffprotected
, and then in the implementing class have better named methods to avoid the<A, B>
!=<B, A>
issue. I will add my own answer with more details.
Final edit: For what it's worth, I decided that using static methods as pseudo constructors (
public static Union<A, B> fromA(A a)
andpublic static Union<A, B> fromB(B b)
) is the best approach (along with making the real constructor private).Union<A, B>
andUnion<B, A>
would never realistically be compared to each other when it's just being used as a return value.
Another edit, 6 months out: I really can't believe how naive I was when I asked this, static factory methods are so obviously the absolute correct choice and clearly a no-brainer.
All that aside I have found Functional Java to be very intriguing. I haven't used it yet but I did find this
Either
when googling 'java disjunct union', it's exactly what I was looking for. The downside though it that Functional Java is only for Java 7 and 8, but luckily the project I am now working on used Java 8.
最佳答案
这样做真的没有任何意义。这什么时候有意义?例如(假设,目前,您的初始代码有效):
Union<String, Integer> union = new Union("Hello");
// stuff
if (union.isA()) { ...
但如果你这样做了,相反:
Union<Integer, String> union = new Union("Hello");
// stuff
if (union.isA()) { ...
这会有不同的行为,即使类和数据是相同的。你的概念isA
和 isB
基本上是“左对右”——哪个是左对右比哪个是字符串对哪个是整数更重要。换句话说,Union<String, Integer>
与 Union<Integer, String>
非常不同,这可能不是您想要的。
例如,考虑一下如果我们说:
List<Union<?, ?>> myList;
for(Union<?, ?> element : myList) {
if(element.isA()) {
// What does this even mean?
某物是 A
的事实没关系,除非你关心它是左派还是右派,在这种情况下你应该这样调用它。
如果此讨论不是关于左与右,那么唯一重要的是在创建类时使用您的特定类型。简单地拥有一个界面会更有意义;
public interface Union<A, B> {
boolean isA();
boolean isB();
A getA();
B getB();
}
您甚至可以在抽象类中使用“is”方法:
public abstract class AbstractUnion<A, B> {
public boolean isA() { return getB() == null; }
public boolean isB() { return getA() == null; }
}
然后,当您实际实例化该类时,无论如何您都会使用特定类型...
public UnionImpl extends AbstractUnion<String, Integer> {
private String strValue;
private int intValue
public UnionImpl(String str) {
this.strValue = str;
this.intValue = null;
}
// etc.
}
然后,当您真正选择了实现类型时,您就会真正知道自己得到了什么。
旁白:如果在阅读以上所有内容后,您仍然想按照最初问题中描述的方式执行此操作,那么正确的方法是使用带有私有(private)构造函数的静态工厂方法,如所述@JoseAntoniaDuraOlmos's answer here .但是,我希望您进一步考虑在实际用例中您实际需要您的类做什么。
关于java - 使用泛型处理构造函数中的类型删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31880691/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!