📄 testcoords.java
字号:
/* * MegaMek - Copyright (C) 2003 Ben Mazur (bmazur@sev.org) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */package megamek.test;import megamek.common.Coords;/** * This class will display various constants and the output of some methods in * the <code>Coords</code> class. This will allow a knowledgeable programmer * to determine that the <code>Coords</code> class is operating correctly. * * TODO: integrate JUnit into this class. */public class TestCoords { public static void main( String[] args ) { System.out.println( "The maximum board height: " + Coords.MAX_BOARD_HEIGHT ); System.out.println( "The maximum board width: " + Coords.MAX_BOARD_WIDTH ); Coords coords = new Coords( 1, 2 ); System.out.println( "The hash of " + coords + " is: " + coords.hashCode() ); System.out.println( "The coords for a hash of 2056 is: " + Coords.getFromHashCode(2056) ); Coords neg_coords = new Coords( -11, -22 ); System.out.println( "The hash of " + neg_coords + " is: " + neg_coords.hashCode() ); System.out.println( "The coords for a hash of 22619 is: " + Coords.getFromHashCode(22619) ); neg_coords = new Coords( 42, -68 ); System.out.println( "The hash of " + neg_coords + " is: " + neg_coords.hashCode() ); System.out.println( "The coords for a hash of 86289 is: " + Coords.getFromHashCode(86289) ); neg_coords = new Coords( -668, 42 ); System.out.println( "The hash of " + neg_coords + " is: " + neg_coords.hashCode() ); System.out.println( "The coords for a hash of 1368234 is: " + Coords.getFromHashCode(1368234) ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -