高人看下这个程序,多处提示找不到符号?
发布网友
发布时间:2024-10-03 16:14
我来回答
共2个回答
热心网友
时间:2024-11-12 14:35
参数类型不对呀,showM
static void showMessageDialog(Component parentComponent, Object message)
static void showMessageDialog(Component parentComponent, Object message, String title, int messageType)
static void showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon)
static int showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue)
就没有
showMessageDialog(<nulltype>,double,double,double)
这种参数类型的
热心网友
时间:2024-11-12 14:36
原方法是:
public static void showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
throws HeadlessException
调出对话框,它显示使用由 messageType 参数确定的默认图标的 message。
参数:
parentComponent - 确定在其中显示对话框的 Frame;如果为 null 或者 parentComponent 不具有 Frame,则使用默认的 Frame
message - 要显示的 Object
title - 对话框的标题字符串
messageType - 要显示的消息类型:ERROR_MESSAGE、INFORMATION_MESSAGE、WARNING_MESSAGE、QUESTION_MESSAGE 或 PLAIN_MESSAGE
你的是showMessageDialog(<nulltype>,double,double,double)
方法不匹配,
热心网友
时间:2024-11-12 14:35
参数类型不对呀,showM
static void showMessageDialog(Component parentComponent, Object message)
static void showMessageDialog(Component parentComponent, Object message, String title, int messageType)
static void showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon)
static int showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue)
就没有
showMessageDialog(<nulltype>,double,double,double)
这种参数类型的
热心网友
时间:2024-11-12 14:36
原方法是:
public static void showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
throws HeadlessException
调出对话框,它显示使用由 messageType 参数确定的默认图标的 message。
参数:
parentComponent - 确定在其中显示对话框的 Frame;如果为 null 或者 parentComponent 不具有 Frame,则使用默认的 Frame
message - 要显示的 Object
title - 对话框的标题字符串
messageType - 要显示的消息类型:ERROR_MESSAGE、INFORMATION_MESSAGE、WARNING_MESSAGE、QUESTION_MESSAGE 或 PLAIN_MESSAGE
你的是showMessageDialog(<nulltype>,double,double,double)
方法不匹配,