Discussion:
ÎÊžöhash±íµÄÎÊÌâ
(时间太久无法回复)
С¿š~~~
2009-08-02 05:16:53 UTC
Permalink
你写

foreach(Hashtable h in hash)
{
h = new Hashtable();
}

了没?
【 在 hellominmin (hellominmin) 的大作中提到: 】
: Hashtable [] hash=new Hashtable[totalweek];
: 。。。。。。
: for (int i = 0; i <= totalweek-1; i++)
: {
: while ((DateTime)temp.Rows[rowcurrent]["Down_date"] < thisweek
: endday)
: {
: if(hash[i].ContainsKey(temp.Rows[rowcurrent]["Category_parentid"]))
: 为什么编译器会说hash[i].ContainsKey(temp.Rows[rowcurrent]["Category_parentid"]
: )
: .................(以下省略)

--
Loading Image...

※ 来源:・饮水思源 bbs.sjtu.edu.cn・[FROM: 124.77.12.175]
Kobe
2009-08-03 04:40:09 UTC
Permalink
Hashtable [] hash=new Hashtable[totalweek];

未初始化每一个元素吧:)

【 在 hellominmin (hellominmin) 的大作中提到: 】
: Hashtable [] hash=new Hashtable[totalweek];
: 。。。。。。
: for (int i = 0; i <= totalweek-1; i++)
: {
: while ((DateTime)temp.Rows[rowcurrent]["Down_date"] < thisweek
: endday)
: {
: if(hash[i].ContainsKey(temp.Rows[rowcurrent]["Category_parentid"]))
: 为什么编译器会说hash[i].ContainsKey(temp.Rows[rowcurrent]["Category_parentid"]
: )
: .................(以下省略)
--

※ 来源:・饮水思源 bbs.sjtu.edu.cn・[FROM: 219.228.113.137]
ÓÈÎÄ͌˹
2009-08-06 17:47:55 UTC
Permalink
re, 里面每一个都是null

【 在 shaqlala (Kobe) 的大作中提到: 】
: Hashtable [] hash=new Hashtable[totalweek];
: 未初始化每一个元素吧:)
: 【 在 hellominmin (hellominmin) 的大作中提到: 】
: : Hashtable [] hash=new Hashtable[totalweek];
: : 。。。。。。
: : for (int i = 0; i <= totalweek-1; i++)
: : {
: : while ((DateTime)temp.Rows[rowcurrent]["Down_date"] < thisweek
: : endday)
: : {
: .................(以下省略)
--

※ 来源:・饮水思源 bbs.sjtu.edu.cn・[FROM: 58.246.135.226]
Loading...