gpt4 book ai didi

Java:使用泛型作为抽象层

转载 作者:行者123 更新时间:2023-12-01 12:34:00 26 4
gpt4 key购买 nike

我正在尝试使用泛型作为抽象层,类似于Java集合。这是一个简化的示例:类 EmployeeRecord 存储有关员工的信息,类 Table 应该是通用的并且能够存储各种类型的数据。该类型作为泛型传递给 Table。我在传递调用存储的特定类时遇到问题。

调用 print() 方法有什么问题?怎么解决?

class EmployeeRecord
{
String name;

EmployeeRecord( String name )
{
this.name = name;
}

void print()
{
System.out.println( name );
}
}

class Table<Record>
{
Record rec;

void set( Record rec )
{
this.rec = rec;
}

void printAll()
{
rec.print(); // COMPILER ERROR
/*
Test.java:27: error: cannot find symbol
rec.print();
^
symbol: method print()
location: variable rec of type Record
where Record is a type-variable:
Record extends Object declared in class Table
1 error
*/
}
}

public class Test
{
public static void main( String[] argv )
{
EmployeeRecord emp = new EmployeeRecord("John");
Table<EmployeeRecord> tab = new Table<EmployeeRecord>();
tab.set( emp );
tab.printAll();
}
}

最佳答案

实现此目的的一种方法是创建所有记录类都将实现的通用接口(interface)

interface Record{
void print();
}

那么你的EmployeeRecord类将如下所示

class EmployeeRecord implements Record
{
String name;

EmployeeRecord( String name )
{
this.name = name;
}

@Override
public void print()
{
System.out.println( name );
}
}

你的表格将如下所示

class Table<T extends Record>
{
T rec;

void set( T rec )
{
this.rec = rec;
}

void printAll()
{
rec.print();
}
}

然后你从 main 方法中调用它,如下所示

public class Test {

public static void main(String[] args) {
EmployeeRecord emp = new EmployeeRecord("John");
Table<EmployeeRecord> tab = new Table<EmployeeRecord>();
tab.set( emp );
tab.printAll();
}
}

关于Java:使用泛型作为抽象层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25711067/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com