boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 还是treemap!谢谢。大牛们给打一下!
相关主题
问一个很基本很基本很基本的API问题
About TreeMap in Java
Sort TreeMap by value?
a faster sortedMap than treemap ?
请问Treeset/Treemap里面subSet(),subMap()的复杂度是多少?
几个Java面试题
一个简单的关于java Map的问题
Why Java did not include Tree or Graph into its Collecionts Framwork?
那个快?
TreeMap, TreeSet原来用起来这么爽
相关话题的讨论汇总
话题: string话题: treemap话题: public话题: msubject话题: mpool
进入Java版参与讨论
1 (共1页)
l*********r
发帖数: 80
1
public TreeMap userAccount;
public TreeMap messagePool;
public hw1_BOM()
{
userAccount=new TreeMap();
messagePool=new TreeMap();
}

public class mPool
{
public int mparentID;
public String mUsername;
public String mSubject;
public String mText;

public mPool(int parentid, String username, String subject, String text)
{
mparentID=parentid;
mUsername=username;
mSubject=subject;
mText=text;
}
}
***************what's wrong with this one below?**********
m
g*****g
发帖数: 34805
2
1 is not an object, replace with new Integer(1) or ""+1 if you want to
use String

【在 l*********r 的大作中提到】
: public TreeMap userAccount;
: public TreeMap messagePool;
: public hw1_BOM()
: {
: userAccount=new TreeMap();
: messagePool=new TreeMap();
: }
:
: public class mPool
: {

l*********r
发帖数: 80
3
你怎么那么牛呀?

【在 g*****g 的大作中提到】
: 1 is not an object, replace with new Integer(1) or ""+1 if you want to
: use String

1 (共1页)
进入Java版参与讨论
相关主题
TreeMap, TreeSet原来用起来这么爽
treemap和hashma p的问题
出个简单题,看你Java APi熟悉到什么程度
Eclipse不能保存UTF-8文件?
MUI 和 vista 中文界面的解决方法
国内阿里华为的面试题比FLAG难多了
Second round phone interview with eBay
谁会做>??????????????????????????????????????
Amazon interview
Bloomberg的电面 希望对你有用兼攒rp
相关话题的讨论汇总
话题: string话题: treemap话题: public话题: msubject话题: mpool