⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contractframe.java

📁 javaACS 蚁群算法是人工智能的一种算法,这个是用JAVA写的一个求解TSP的程序
💻 JAVA
字号:
/* CONTRACTFRAME */
/* Part of the AntTSP project */
/* Dr Mark C. Sinclair, NPIC, Cambodia, v1.0, November 2006, mcs@ieee.org */
/* You may make use of this code for any purpose, but if you use it, */
/* you must cite the use: Sinclair, M.C., AntTSP Java Applet v1.0, */
/* http://uk.geocities.com/markcsinclair/aco.html, November, 2006 */

import java.awt.*;
import java.awt.event.*;

class ContractFrame extends Frame {
	public ContractFrame(String s) {
		super("Contract Exception");

		addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				setVisible(false);
				dispose();
			}
		});

		Panel panel = new Panel();
		panel.setLayout(new GridLayout(0, 1));
		panel.add(new Label("Sorry! (programming error)", Label.CENTER));
		panel.add(new Label(s, Label.CENTER));
		add(panel, BorderLayout.CENTER);

		Button okButton = new Button("Ok");
		okButton.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				// Ok
				setVisible(false);
				dispose();
			}
		});
		add(okButton, BorderLayout.SOUTH);

		pack();
		setVisible(true);
	}

	public static void main(String argv[]) {
		new ContractFrame("hello");
	}

	private static final long serialVersionUID = 1L;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -