JDK Tools and Utilities Basic Tools These tools are the foundation of the JDK. They are the tools you use to create and build applications. Tool Name Brief Description appletviewer Run and debug applets without a web browser. extcheck Utility to dete…
[Basic] The most basic things about java // */ // ]]> [Basic] The most basic things about java Table of Contents 1 数据类型 1.1 基本类型, 针对32位系统 1.1.1 C 1.1.2 Java 1.2 非基本类型 1.2.1 C 1.2.2 Java 2 操作符 2.1 算术操作符 2.2 关系操作符 2.3 逻辑操作符 2.3.1 C 2.3.2 Java 2.4 位操作…
// File Name : URLDemo.java import java.net.*; import java.io.*; public class URLDemo { public static void main(String [] args) { try { URL url = new URL("http://www.amrood.com/index.htm?language=en#j2se"); System.out.println("URL is "…
1.What is exception in Java? Java使用异常描述程序中可能出现的不正常情况.这个不正常可以是java认为的不正常,也可以是你主观上的出乎意料(自定义异常).总而言之,异常用于表示程序中的不正常现象. 2.Why use exception in Java? ① 异常分离程序中正常逻辑代码和非正常情况处理问题的代码.提升代码的可读性 ② 引入异常处理机制,大大提升系统的健壮性. 3.Use Exception when to use? ① 如果方法执行过程中可能会遇到…
What - 什么是注解? Annontation是Java5开始引入的新特征,中文名称叫注解.它提供了一种安全的类似注释的机制,用来将任何的信息或元数据(metadata)与程序元素(类.方法.成员变量等)进行关联.为程序的元素(类.方法.成员变量)加上更直观更明了的说明,这些说明信息是与程序的业务逻辑无关,并且供指定的工具或框架使用.Annontation像一种修饰符一样,应用于包.类型.构造方法.方法.成员变量.参数及本地变量的声明语句中. Java注解是附加在代码中的一些元…
The open source, cross platform, free C++ IDE. Code::Blocks is a free C++ IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable. Finally, an IDE with all the features you need, having a c…