mainclass.java

来自「This article describes how to consume We」· Java 代码 · 共 33 行

JAVA
33
字号
package com.edujinionline.tutorials.webservices;

/**
 * 
 * MainClass - The entry point of the application.
 * <br/>
 * For terms and usage, please see the LICENSE file provided alongwith or
 * contact <a href='mailto:copyright@edujinionline.com'>copyright@edujinionline.com</a>
 * <br/>
 * <a href='http://www.edujinionline.com'>http://www.edujinionline.com</a>
 * 
 * @author Gaurav Vaish
 * @version 1.0
 * @copyright (C) 2006, Edujini (www.edujinionline.com)
 */
public class MainClass
{
	/**
	 * Entry point of the application
	 * 
	 * @param args
	 *            Arguments to the main method
	 */
	public static void main(String[] args)
	{
		double x = 34.56;
		double y = 45.67;

		double z = BasicWebServicesClient.testAdd(x, y);
		System.out.printf("%f + %f = %f", x, y, z);
	}
}

⌨️ 快捷键说明

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