A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© noiary 高级黑马   /  2014-9-16 13:06  /  643 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

中午休息时间太短,只能练一会,不过好在这也是学习的趣味所在!

up!

  1. /*
  2. String API 练习
  3. */

  4. public class StringDemo {

  5.         public static void main(String[] args) {
  6.        
  7.                 String s = "abcdefghijklmnopqrstuvwxyz";
  8.                 String t = new String("abcdefghijklmnopqrstuvwxyz");
  9.                 print("s长度 = \t" + s.length());
  10.                 print("第16个英文字母 = " + s.charAt(15));
  11.                 print("是否以nopqrstuvwxyz结尾: " + s.endsWith("nopqrstuvwxyz"));
  12.                 print("t == s: " + (t == s));
  13.                 print("t.equals: " + t.equals(s));
  14.         }
  15.        
  16.         public static void print(Object obj) {
  17.        
  18.                 System.out.println(obj);
  19.         }
  20. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马