- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个通用方法(称为 map
),它采用 Funcn
类型的参数其中 Funcn<K,T>
是一个只有一个方法的接口(interface),T eval(K)
,它需要一个 K
并返回 T
.在 map
, 我需要使用 Funcn
遍历 List<K>
(这是在 main
方法中定义的——我在 this
中使用 map
来访问它)并应用 Funcn
到列表中的每个元素。最后,一个新的 List<T>
eval
的所有结果应该退回。但是,我不确定如何做到这一点,因为我不熟悉泛型的语法。
/// the Funcn interface ///
package arrayList;
import java.util.*;
public interface Funcn <K,T> {
public T eval(K k);
}
/// the generic map method(in its own class) ///
public java.util.ArrayList<T> map(Funcn<T,K> fn){
for(T value:this){
//fn must be applied to all elements in 'this'
}
}
最佳答案
在您的代码中,接口(interface) Funcn<K,T>
声明一个方法 eval
这需要 K
作为参数并返回 T
.注意 K
是第一个类型参数,T
是第二个。
public interface Funcn <K,T> {
public T eval(K k);
}
在您的声明中map
方法,但是,您已经获得了 Funcn
的类型参数反转:
public java.util.ArrayList<T> map(Funcn<T,K> fn){ /* … */ }
// * *
这意味着fn.eval
需要 T
并返回 K
.相反,它应该是 Funcn<K,T> fn
这样fn.eval
需要 K
并返回 T
.这将解释您在评论中提到的错误消息:“类型 apply(K)
中的方法 Function<T,K>
不适用于参数 (T)
”(它不会解释为什么您有 Function
在不过,一个地方和另一个地方的 Funcn
。您向我们展示了真正的代码吗?)
交换这些参数的顺序将解决您眼前的问题,但通常类型参数会稍微复杂一些。要完全正确地获取这些泛型函数的输入和输出类型是很棘手的,因为您应该能够将期望类型 C 的参数的函数映射到其元素是 C 的子类型的列表上。代码中的注释解释了这一点更详细一些。
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class MapExample {
/**
* A Function maps an input to an output.
*/
interface Function<InputType,OutputType> {
OutputType call( InputType input );
}
/**
* Map returns a list of elements obtained by applying the function
* to each element of the input list. The input and output types
* of the function do not need to align exactly with the type of
* elements in the input list; but the function's input type must
* be some supertype of the element type of the input list. Similarly,
* the output type of the function does not need to be the element type
* of the output list; but it must extend that type so that the result
* of the function can be stored in the output list.
*/
public static <OutputType,InputType> List<OutputType> map(
final Function<? super InputType,? extends OutputType> function,
final List<? extends InputType> list ) {
final List<OutputType> results = new ArrayList<>( list.size() );
for ( InputType in : list ) {
results.add( function.call( in ));
}
return results;
}
public static void main(String[] args) {
// f takes an integer n to the string "*<n+1>*" (where <n+1> is the value of n+1).
Function<Integer,String> f = new Function<Integer, String>() {
@Override
public String call(Integer input) {
return "*"+new Integer( input + 1 ).toString()+"*";
}
};
System.out.println( map( f, Arrays.asList( 1, 3, 6, 8 )));
}
}
输出是:
[*2*, *4*, *7*, *9*]
顺便说一句,我发现其中一些功能性问题是在对象中使用实例初始化 block 的好地方。虽然上面的实现创建了 results
列出,然后填充,然后返回它,您还可以拥有 map
的正文是:
return new ArrayList<OutputType>( list.size() ) {{
for ( final InputType in : list ) {
add( function.call( in ));
}
}};
我有点喜欢,尽管您会收到一条警告,指出新的(匿名)类没有序列化 ID,因此您要么需要 @SuppressWarnings("serial")
在 map
上方法,或向类添加一个 ID。不过,这些可能不太理想。不过,如 Efficiency of Java "Double Brace Initialization"? 中所讨论,此类对象也存在其他问题。 .
关于java - 在列表上映射通用方法并生成结果列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20685017/
我使用 AppFuse 创建项目已经有一段时间了。我已经知道有两种方法可以开发 DAO 和 Manager 类: GenericDao/GenericManager 方法 UniversalDao/U
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
在普通的单线程程序中,捕获异常只需要通过try ... catch ... finally ...代码块就可以了。那么,在并发情况下,比如在父线程中启动了子线程,如何在父线程中捕获来自子线程的异常,
假设我有一个这样的界面 interface Example { first_name: string, last_name: string, home_town: string
我已经成为 hg 用户几年了,对此我很高兴! 我必须开始一个我以前从未做过的项目。我们的想法是开发一个具有批处理模式和 GUI 的软件。 因此,批处理模式和 GUI 模式都有共同的源,但每种模式也都包
我可以在Silverlight中使用generic.xaml来设置应用程序中所有TextBlock的样式吗? 我原以为它会起作用,但它没
顶部 map 有 3 个子 map ,每个子 map 都有不同的对象。 像下面的代码,如何将通用添加到 map 顶部? Map top = new ConcurrentHashMap();
我想创建一个hashmap,其中键是接口(interface)A,值是接口(interface)B。然后我想用实现A和B的类来初始化它。是否可以使用java泛型来做到这一点? 也就是说,我想要类似的东
Enum 位于 java.lang.Enum 中,Object 位于 java.lang.Object 中>。那么,为什么 Enum 不是 Object 呢? (我收到一个java.lang.Clas
我有一种方法,check,它有两个 HashMap 作为参数。这些映射的键是 String,值是 String 或 Arraylist。 哪个是更好的解决方案: public static boole
我启动了针对iPhone的应用程序,现在我也想将其应用程序用于iPad。当我开始做iPhone项目时,即使我添加了iPad xib,它也无法正确显示,如何转换我的项目同时适用于iPhone和iPad(
这行代码(代码1)有什么区别 auto l1 = [](auto a) { static int l = 0; std::cout operator() for type const char*) 被
使用 Generic#to,我可以获得 case class 的 HList 表示: import shapeless._ case class F(x: Int, y: String) scala>
我有一个 BiDiMap 类。如何使其通用,不仅接受 String 而且接受 Object 类型的对象作为输入参数,同时保持所有原始函数正常工作。例如,我希望能够使用函数 put() 和 Object
我在编译 foreach 循环时遇到问题。我很确定这是我的泛型处理的问题,因为该错误是对象兼容性问题。我已搜索解决方案,但找不到任何可以解决该问题的内容。 这是定义 Iterable adjList
大约有 6 个 POJO 类(域实体、DTO、DMO)都具有几乎相同的字段。为了从一个对象转换为另一个对象,我传递一个对象并调用它的 getter 将其设置到另一个对象中。 private UserT
有没有什么方法可以创建一个通用的 for 循环,它可以正确地循环遍历数组或对象?我知道我可以编写以下 for 循环,但它也会遍历将添加到数组的其他属性。 for (item in x) { co
我已经有一段时间没有写js了,显然有点生疏了。试图理解以下问题。 getCurrentPosition successCallback 中的警报正确显示纬度,但最后一行警报未定义。为什么我的 clie
请帮助我,我从来没有用 xib 为 iPhone/iPad 制作过通用的 UIViewControllers。如何使用 .m 和 .h 文件以及 _iphone.xib 和 _ipad.xib 创建类
我正在尝试创建一个 createRequest 函数,我可以将其重新用于我的所有网络调用,有些需要发布 JSON 而其他则不需要,所以我正在考虑创建一个采用可选通用对象的函数;理论上是这样的: str
我是一名优秀的程序员,十分优秀!