快速业务通道

走上开放之路: ASP 开发人员的 J2EE 基础(上) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
iginal reference. */ public class StringTest {   public static void main(String[] args) {     String str1 = "Hi there";     String str2 = new String("Hi there");     // Display true if str1 and str2 have the value     System.out.println(str1.equals(str2));     // A new uppercase version of str1     System.out.println(str1.toUpperCase());     // A new lowercase version of str2     System.out.println(str1.toLowerCase());     System.out.println(str1.substring(1,4));     // A new version of str1 w/o any trailing whitespace chars     System.out.println(str1.trim());     // Display true if str1 start with "Hi"     System.out.println(str1.startsWith("Hi"));     // Display true if str1 ends with "there"     System.out.println(str1.endsWith("there"));     // Replace all i''s with o''s     System.out.println(str1.replace(''i'', ''o''));   } }

走上开放之路: ASP 开发人员的 J2EE 基础(上)(8)

时间:2011-03-11 IBM Jeff Wilson

main() 方法

作为应用程序从命令行运行的 Java 类必须定义一个 main() 方法才能运行。在 Java 代码中, main() 方法遵循严格的命名约定。采用下列方式声明 main() 方法:

public static void main(String[] args)

注:您可以将 public 和 static 修饰符互换位置,可以将 String 数组命名为任何您希望的形式。但是,上述格式是约定俗成的。并非所有的类都需要 main() 方法 ―― 只有从命令行运行的那些类才需要该方法。典型的 Java 应用程序有一个类包含 main() 方法,而其他一些支持类都没有 main() 方法。

诸如 Java 语言之类的面向对象语言非常有利于类的重用。由于大多数程序员使用简单的描述性名称(如 Invoice 或 User )对其类进行命名,所以,当您从各种来源重用类时,名称冲突的可能性很高。Java 语言解决该问题的方法是,让每个类术语一个 包。您可以同时使用具有相同名称但属于不同包中的类。要将类与包关联起来,必须在类源代码的第一行代码进行包声明。请看下面的例子:

package com.ibm.training;

按照约定,将反向的 Internet 域名(例如, com.yourco.somepackage )作为包名称的前缀。要使用不同包中的类,有两种选择。一种选择是使用类的完全限定名称,包括包。清单 6 展示了一个例子。

清单 6. 使用全限定的类名

public class PackDemo1 { public static void main(String[] args) {   Java.util.Date today = new java.util.Date();   System.out.println("The date is " + today); }

另一种选择是在源文件中对在另一个包中的类使用 import 语句。这种情况就不再需要完全限定名,如清单 7 所示。

清单 7. 使用 import 语句

import java.util.Date; public class PackDemo1 { public static void main(String[] args) {   Date today = new Date();   System.out.println("The date is " + today); }

可以使用通配符导入包中的所有类。如果要使用同一包中的几个类,那么这种方法很有用,如清单 8 所示。

清单 8. import 语句与通配符一起使用

import java.util.*; public class PackDemo1 { public static void main(String[] args) {   Date now = new Date();   System.out.println("The date is " + today); }

走上开放之路: ASP 开发人员的 J2EE 基础(上)(9)

时间:2011-03-11 IBM Jeff Wilson

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号