关于Java中的一个小问题

2024-12-28 08:06:05
推荐回答(2个)
回答1:

static int showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon)
调出一个带有指定图标的对话框,其中的选项数由 optionType 参数确定。
static String showInputDialog(Component parentComponent, Object message)
显示请求用户输入内容的问题消息对话框,它以 parentComponent 为父级。
static String showInputDialog(Component parentComponent, Object message, Object initialSelectionValue)
显示请求用户输入内容的问题消息对话框,它以 parentComponent 为父级。
static String showInputDialog(Component parentComponent, Object message, String title, int messageType)
显示请求用户提供输入的对话框,它以 parentComponent 为父级,该对话框的标题为 title,消息类型为 messageType。
static Object showInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue)
提示用户在可以指定初始选择、可能选择及其他所有选项的模块化的对话框中输入内容。
static String showInputDialog(Object message)
显示请求用户输入的问题消息对话框。
static String showInputDialog(Object message, Object initialSelectionValue)
显示请求用户输入的问题消息对话框,它带有已初始化为 initialSelectionValue 的输入值。

可以自己看看API

回答2:

Field[]
fs=c.getDeclaredFields();
Method[]
ms=c.getDeclaredMethods();
这两句是没错的,发下你出的那段代码
错误是由于类型问题