Java Bit Clean clearBit(int value, int bitIndex)

Here you can find the source of clearBit(int value, int bitIndex)

Description

clear Bit

License

Apache License

Return

`rawValue' with bit `bitIndex' set to 0

Declaration

public static int clearBit(int value, int bitIndex) 

Method Source Code

//package com.java2s;
/*/*from  w  w w.j  a  va  2 s  .  c  o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * @return `rawValue' with bit `bitIndex' set to 0
     */
    public static int clearBit(int value, int bitIndex) {
        assert (bitIndex >= 0);
        assert (bitIndex <= 31);

        int bit = pow2(bitIndex);
        return (value & bit) == 0 ? value : value ^ bit;
    }

    private static int pow2(int n) {
        return 1 << n;
    }
}

Related

  1. clearBit(int bits, int index)
  2. clearBit(int flag, int i)
  3. clearBit(int n, int bitPosition)
  4. clearBit(int value, int bit)
  5. clearBit(int value, int bit)
  6. clearBit(int value, int index)
  7. clearBit(long n, int i)
  8. clearBit33ofDTS(byte[] array, int offset)
  9. clearBits(int value, int bits)