标题:按位与&用法求助
只看楼主
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
结帖率:79.17%
 问题点数:0 回复次数:0 
按位与&用法求助
byte[] output = new byte[bits.Length * 4];
        for (int i = 0, j = 0; i < bits.Length; i++, j += 4)
        {
            output[j] = (byte)(bits & 0xff);
            output[j + 1] = (byte)((bits >> 8) & 0xff);
            output[j + 2] = (byte)((bits >> 16) & 0xff);
            output[j + 3] = (byte)((bits >> 24) & 0xff);
        }
        return output;
(完整程序见附件)
总是提示 Error    1    Operator '&' cannot be applied to operands of type 'uint[]' and 'int'    F:\Program_Files\Microsoft Visual Studio 8\mywork\CJMD5\CJMD5\md5.cs    266    32    CJMD5
怎么&两边的操作数类型必须一致吗 ?

md5.rar (3.22 KB) 源代码

搜索更多相关主题的帖子: 数据类型 一致性 按位与 语法 
2008-09-02 14:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-231013-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.270279 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved