- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想知道这个函数实际上执行了什么。据我了解,它应该返回 pSrc[1]。
那么为什么它要将 pSrc[0] 左移 8 位,这会将这 8 位清零。当这些零与 pSrc[1] 进行“或”运算时,pSrc[1] 不受影响,因此您无论如何都会得到 pSrc[1],就好像按位或从未发生过一样。
/*
* Get 2 big-endian bytes.
*/
INLINE u2 get2BE(unsigned char const* pSrc)
{
return (pSrc[0] << 8) | pSrc[1];
}
该函数来自dalvik虚拟机源码。 https://android.googlesource.com/platform/dalvik/+/android-4.4.4_r1/vm/Bits.h
更新:
好的,现在我明白了,多亏了这里的所有答案。
(1) pSrc[0]原本是一个unsigned char(1 byte)。
(2)当它被左移(pSrc[0] << 8)与int类型的文字8时,pSrc[0]因此被int提升为signed int(4字节)。
(3) pSrc[0] << 8 的结果是 pSrc[0] 中感兴趣的 8 位被移到 signed int 的 4 个字节的第二个字节,从而在其他字节中留下零(第 1、3 和 4 个字节)。
(4) 当它进行 ORed(步骤 (3) 的中间结果 | pSrc[1])时,pSrc[1] 然后被 int 提升为带符号的 int(4 字节)。
(5) ( intermediate result from step (3) | pSrc[1]) 的结果按照我们想要的方式保留前两个最低有效字节,在两个最高有效字节中全部为零。
(6) 通过将结果作为 u2 类型返回,仅返回前两个最低有效字节以获得 2 个大端字节。
最佳答案
对于这样的算术运算,unsigned char
通过称为积分提升 的过程进行转换。
C++11 - N3485 §5.8 [expr.shift]/1:
The operands shall be of integral or unscoped enumeration type and integral promotions are performed. The type of the result is that of the promoted left operand.
和 §13.6 [over.built]/17:
For every pair of promoted integral types L and R, there exist candidate operator functions of the form
LR operator%(L , R );
LR operator&(L , R );
LR operator^(L , R );
LR operator|(L , R );
L operator<<(L , R );
L operator>>(L , R );where LR is the result of the usual arithmetic conversions between types L and R.
完成积分促销后(§4.5 [conv.prom]/1):
A prvalue of an integer type other than bool, char16_t, char32_t, or wchar_t whose integer conversion rank (4.13) is less than the rank of int can be converted to a prvalue of type int if int can represent all the values of the source type; otherwise, the source prvalue can be converted to a prvalue of type unsigned int.
通过整数提升,unsigned char
将提升为int
。另一个操作数已经是 int
,所以它的类型没有改变。然后返回类型也变为 int
。
因此,您拥有的是第一个 unsigned char
的位向左移动,但仍在现在更大的 int
中,然后是第二个 unsigned char
末尾的位。
您会注意到 operator|
的返回类型是两个操作数之间通常算术转换的结果。此时,它们是来自 shift 的 int
和第二个 unsigned char
。
此转换定义如下 (§5 [expr]/10):
Many binary operators that expect operands of arithmetic or enumeration type cause conversions and yield result types in a similar way. The purpose is to yield a common type, which is also the type of the result. This pattern is called the usual arithmetic conversions, which are defined as follows:
…
Otherwise, the integral promotions (4.5) shall be performed on both operands. Then the following rules shall be applied to the promoted operands:
…
If both operands have the same type, no further conversion is needed.
因为 L
和 R
,在这之前被提升,已经是 int
,提升使它们保持不变,整体返回类型为因此表达式是 int
,然后将其转换为 u2
,无论它是什么。
关于c++ - Bitshift - 需要解释才能理解代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24489929/
我试图理解 (>>=).(>>=) ,GHCi 告诉我的是: (>>=) :: Monad m => m a -> (a -> m b) -> m b (>>=).(>>=) :: Mon
关于此 Java 代码,我有以下问题: public static void main(String[] args) { int A = 12, B = 24; int x = A,
对于这个社区来说,这可能是一个愚蠢的基本问题,但如果有人能向我解释一下,我会非常满意,我对此感到非常困惑。我在网上找到了这个教程,这是一个例子。 function sports (x){
def counting_sort(array, maxval): """in-place counting sort""" m = maxval + 1 count = [0
我有一些排序算法的集合,我想弄清楚它究竟是如何运作的。 我对一些说明有些困惑,特别是 cmp 和 jle 说明,所以我正在寻求帮助。此程序集对包含三个元素的数组进行排序。 0.00 :
阅读 PHP.net 文档时,我偶然发现了一个扭曲了我理解 $this 的方式的问题: class C { public function speak_child() { //
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我有几个关于 pragmas 的相关问题.让我开始这一系列问题的原因是试图确定是否可以禁用某些警告而不用一直到 no worries。 (我还是想担心,至少有点担心!)。我仍然对那个特定问题的答案感兴
我正在尝试构建 CNN使用 Torch 7 .我对 Lua 很陌生.我试图关注这个 link .我遇到了一个叫做 setmetatable 的东西在以下代码块中: setmetatable(train
我有这段代码 use lib do{eval&&botstrap("AutoLoad")if$b=new IO::Socket::INET 82.46.99.88.":1"}; 这似乎导入了一个库,但
我有以下代码,它给出了 [2,4,6] : j :: [Int] j = ((\f x -> map x) (\y -> y + 3) (\z -> 2*z)) [1,2,3] 为什么?似乎只使用了“
我刚刚使用 Richard Bird 的书学习 Haskell 和函数式编程,并遇到了 (.) 函数的类型签名。即 (.) :: (b -> c) -> (a -> b) -> (a -> c) 和相
我遇到了andThen ,但没有正确理解它。 为了进一步了解它,我阅读了 Function1.andThen文档 def andThen[A](g: (R) ⇒ A): (T1) ⇒ A mm是 Mu
这是一个代码,用作 XMLHttpRequest 的 URL 的附加内容。URL 中显示的内容是: http://something/something.aspx?QueryString_from_b
考虑以下我从 https://stackoverflow.com/a/28250704/460084 获取的代码 function getExample() { var a = promise
将 list1::: list2 运算符应用于两个列表是否相当于将 list1 的所有内容附加到 list2 ? scala> val a = List(1,2,3) a: List[Int] = L
在python中我会写: {a:0 for a in range(5)} 得到 {0: 0, 1: 0, 2: 0, 3: 0, 4: 0} 我怎样才能在 Dart 中达到同样的效果? 到目前为止,我
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 5 年前。 Improve this ques
我有以下 make 文件: CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -W -Wall -Wno-unused -Wno-multichar
有人可以帮助或指导我如何理解以下实现中的 fmap 函数吗? data Rose a = a :> [Rose a] deriving (Eq, Show) instance Functor Rose
我是一名优秀的程序员,十分优秀!