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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 黑马田杰 中级黑马   /  2013-1-27 22:45  /  1501 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 shdow2689 于 2013-1-28 20:41 编辑

                if (strInput == ' ')
                { }
                else if (hashtable.ContainsKey(strInput))
                {
                    int newValue = (int)hashtable[strInput];
                    newValue++;
                    hashtable[strInput] = newValue;
                }
                else
                {
                    hashtable.Add(strInput, 1);
                }

为什么不能这样用:((int)hashtable[strInput])++;

评分

参与人数 1技术分 +1 收起 理由
潘梦军 + 1

查看全部评分

2 个回复

倒序浏览
实际上,该C#程序中,((int)hashtable[strInput[i]])被初始化为一个常量,因此,使用((int)hashtable[strInput[i]])++或者((int)hashtable[strInput[i]])--这样的语句都是不合法的。

评分

参与人数 1技术分 +1 收起 理由
潘梦军 + 1

查看全部评分

回复 使用道具 举报
原来如此,先把它赋给一个变量,再重新赋值便可以了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马