org.jgroups.tests.bla3 Maven / Gradle / Ivy
package org.jgroups.tests;
import org.jgroups.util.Util;
/**
* @author Bela Ban
* @since x.y
*/
public class bla3 {
public static void main(String[] args) throws Exception {
int val=Util.getNextHigherPowerOfTwo(1024);
System.out.println("1024 -> " + val);
val=Util.getNextHigherPowerOfTwo(10000);
System.out.println("10000 -> " + val);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy