- 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/
我在一个项目中工作,该项目需要 SQL 结果的最佳性能,并且希望优化查询,但经过反复试验后,我在 IN 方面遇到了一些问题。 -- THIS RETURNS NO RESULTS AT ALL. SE
在尝试创建一个实际上非常简单的 SQL 语句时,我发现自己迷失了方向。 我有一个包含 3 个表的数据库: 食谱 - 存储一些用于 cooking 的食谱名称 配料食谱 - 将配料与食谱链接 成分 -
我正在尝试理解 PHP 中的 Hebrev 函数。 https://php.net/manual/en/function.hebrevc.php 它说:“将逻辑希伯来语文本转换为视觉文本”。但我不明白
嗨,我在 Grid view 的 android 文档中发现了一段代码对于以下代码。 gridview.setOnItemClickListener(new OnItemClickListener()
谁能解释一下 InfiniBand 是什么?与以太网相比的主要区别是什么,这些差异如何使其比以太网更快? 在官方description从 mellanox 写到 Introduce InfiniBan
这个问题已经有答案了: How are java increment statements evaluated in complex expressions (1 个回答) 已关闭 8 年前。 我知道
我正在阅读 MySQL 教程,我遇到了这个: SELECT /*! SQL_NO_CACHE */ user FROM users; 为什么优化提示 SQL_NO_CACHE 包含在: /*!
我无法理解$(this),我做了一个剪刀石头布的版本,并应用了 jQuery 让用户在计算机上选择按钮选项。我希望有人能解释一下 $(this) 指的是什么,它是 btn-primary 吗?该函数在
我不是很确定 while(choice == 1 || choice ==2);谁能解释一下。我明白这一点 if(choice ==1) displayMonthly(rainfall); e
let flyRight = CABasicAnimation(keyPath: "position.x") flyRight.toValue = view.bounds.size.width/2 f
目录 解释:int型默认值为0 但我们尝试发现并不能通过: 原因: int的默认值为0,而Integer的默认值为null
我正在处理一个查询,自从一个 SSRS 服务器传输到另一个服务器后,它似乎没有按预期执行,并且 where 语句的一部分中出现了以下行 找出不同之处,或者至少从我能找到的地方来看。 where COA
我正在制作一个退回检测程序,读取退回邮件。我们的设置是发送电子邮件,在发送的邮件中添加一个 noreply@domain.tl。一些收件人不再存在,因此我们想要读取退回邮件,并检测它发送给谁。我已经崩
我有一个关于公式通过控制点弯曲的问题。 如您所知,HTML Canvas 有 quadraticCurveTo(x1, y1, x2, y2)与 x1 and x2作为控制点。 但是,当您尝试使用它绘
我有一个 Emakefile看起来像: %% -- %% %% -- {'/Users/user/projects/custom_test/trunk/*', [debug_info, {out
我有一个非常简单的问题。这不仅适用于 spray-json,而且我已经阅读了 argonaut 和 circe 的类似声明。所以请赐教。 在 spray-json 中,我遇到了 There is no
我正在为视频添加水印。我试图让水印与视频尺寸成比例。我已经使用 scale2ref 看到了十几个不同的答案,但没有解释实际发生了什么,所以我发现很难知道如何实现/更改配置以适应我的情况。 当前覆盖命令
因为我正在学习语言,所以我在玩 Haskell,我只是发现了一些我不理解的东西,我找不到解释。如果我尝试运行此代码: map (`div` 0) [1,2,3,4] 我得到一个除以 0 的异常,这是预
我正在寻找解决错误对象引用未设置到对象实例的步骤/指南。以及问题发生原因的解释。 我正在寻找更一般的解释,所以如果我收到错误,我应该采取什么步骤来查找问题。我经常看到有人提供特定代码段的帖子,而其他人
我最近想升级我的知识React ,所以我从组件生命周期方法开始。让我好奇的第一件事是这个componentWillReceiveProps .所以,文档说当组件接收新的(不一定是更新的) Prop 时
我是一名优秀的程序员,十分优秀!