当前位置:  开发笔记 > 编程语言 > 正文

理解c ++中的"按位 - 和(&)"和"一元补码(〜)"

如何解决《理解c++中的"按位-和(&)"和"一元补码(〜)"》经验,为你挑选了1个好方法。

我有一些麻烦的了解Bitwise-AndUnary Complement当两个在此代码段用于

if((oldByte==m_DLE) & (newByte==m_STX)) {
    int data_index=0;

   //This below line --- does it returns true if both the oldByte and newByte are not true 
   //and within timeout 
while((timeout.read_s()0) {
                            oldByte=newByte;
                            newByte=Serial.read();

                            if(newByte==m_DLE) {
                            .
                            .
                            .

被两个运营商& ~都像检查,直到执行逻辑操作不如果两个oldBytenewByte为假

上面的代码来自链接 - >代码的第227行

我试图在C中使用我的应用程序的代码实现,但没有计时功能

 if((oldByte==DLE) && (newByte== STX)) {
    data_index = 0;
     // is this the correct implematation for above C++ code to C  
    while(! ((oldByte== DLE) && (newByte== ETX))){
          oldByte = newByte;

这种方法在C中实现是否正确



1> patros..:
(timeout.read_s()

相当于(但可能不太可读)

(timeout.read_s()

相当于(和IMO的可读性不如)

(timeout.read_s()

编辑:应该添加一个关于短路的警告.虽然特定的示例语句都将使用&&或||返回相同的值 将跳过评估不会影响结果的部分.这在您的具体示例中并不重要,但在以下示例中可能非常重要:

(oldByte!=nullptr & *oldByte == m_ETX) // will crash when oldByte=nullptr.

(oldByte!=nullptr && *oldByte == m_ETX) // will evaluate to false when oldByte=nullptr.

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有