bitset::flip的含义和用法:

bitset::flip:反转所有位,或者指定的位。

Toggles the value of all the bits in a bitset or toggles a single bit at a specified position.

 

反转:原来是1,反转后就是0;如果原来是0,toggle后就是1.

不带参数调用,就是反转所有位。

带参数,即是从右边数0开始数,反转第几位。(注意:两点 1是从右边数,2是从0开始)

 

// bitset_flip.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>

int main( )
{
    using namespace std;
    bitset<5> b1 ( 6 );

    cout << "The collection of bits in the original bitset is: ( "
        << b1 << " )" << endl;

    bitset<5> fb1;
    fb1 = b1.flip ( );

    cout << "After flipping all the bits, the bitset becomes: ( "
        << fb1 << " )" << endl;

    bitset<5> f3b1;
    f3b1 = b1.flip ( 0 );

    cout << "After flipping the fourth bit, the bitset becomes: ( "
        << f3b1 << " )" << endl << endl;

    bitset<5> b2;
    int i;
    for ( i = 0 ; i <= 4 ; i++ )
    {
        b2.flip(i);
        cout << b2 << "  The bit flipped is in position "
            << i << ".\n";
    }
}

 

运行结果:

flip

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值