パーミッションアルゴリズム
484 ワード
コードは簡単です
このアクションを操作する権限があるかどうかを計算します.
このアクションを操作する権限があるかどうかを計算します.
/**
*
* @param userPurview
* @param optPurview
* @return
*/
public static boolean checkPower(int userPurview,int optPurview){
//
int purviewValue = (int)Math.pow(2, optPurview);
//
return (userPurview &purviewValue) == purviewValue;
}