小编use*_*698的帖子

IBM Websphere Application Server和IBM Websphere Process Server之间的区别?

我目前正在研究IBM Websphere Application Server和IBM Websphere Process Server之间的区别?

我知道Process Server就像是App服务器的更高级别的层,但是想知道使用它们的开发是相同还是相似.我一直在使用集成开发人员和App服务器一段时间,并且想知道是否为Process服务器传输了这些技能.

谢谢你的帮助 :)

websphere wid websphere-7

7
推荐指数
2
解决办法
2万
查看次数

了解在java中使用泛型

我试图理解类泛型如何工作,这一点对我来说没有意义.

例如,如果我有以下类:

class A<E> {
    void go (E e) { } 
}

class B extends A { }
Run Code Online (Sandbox Code Playgroud)

然后我试试

A<? extends A> a1 = new A<A>();
A<? extends A> a2 = new A<B>();

a1.go(new A()); // i get a compiler error
a2.go(new B()); // i get a compiler error
Run Code Online (Sandbox Code Playgroud)

go方法不应该接受A或A的任何子类吗?

谢谢 :)

java generics

6
推荐指数
1
解决办法
304
查看次数

标签 统计

generics ×1

java ×1

websphere ×1

websphere-7 ×1

wid ×1