Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区 » 编程/算法/API  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 奇怪的String-- 原型的对象
烂泥





发贴: 538
积分: 72
于 2002-11-23 14:50 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
String是一个非常特别的类型。Java中并不提供string的原型,所以压根没有string(这个和C#是不同的)。
看看下面的代码吧:
  public class Test 
{
String a="aaa";
String b="aaa";
String c=new String("aaa");
String d=new String("aaa");

public void printResult()
{
System.out.println ("a:"+a);
System.out.println ("b:"+b);
System.out.println ("a==b: "+(a==b));
System.out.println ("a==c: "+(a==c));
System.out.println ("a==d: "+(a==d));
System.out.println ("Equals: "+(
a.equals (b) &
b.equals (c) &
c.equals (d)
));
}

public static void main(String args[])
{
Test temp=new Test();
temp.printResult ();
}
}


littledeer1974 edited on 2004-11-14 17:24


话题树型展开
人气 标题 作者 字数 发贴时间
42741 奇怪的String-- 原型的对象 烂泥 774 2002-11-23 14:50
33117 回复: 奇怪的String-- 原型的对象 烂泥 509 2002-11-23 15:09
33005 Re:奇怪的String-- 原型的对象 littledeer1974 5 2004-11-14 17:25
33238 Re:奇怪的String-- 原型的对象 kjjx 110 2004-11-14 19:57
33139 Re:奇怪的String-- 原型的对象 鸡肋男 56 2004-11-16 09:08

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923