Java Integer And and(int operand1, int operand2)

Here you can find the source of and(int operand1, int operand2)

Description

and

License

Open Source License

Declaration

public static int and(int operand1, int operand2) 

Method Source Code

//package com.java2s;

public class Main {
    public static int and(int operand1, int operand2) {
        return operand1 & operand2;
    }//from  w  w  w . j  a v  a 2 s  . c  om
}

Related

  1. and(int x, int y)