This action will force synchronization from cxylk/Java-Notes, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/** Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.io;/*** Utility methods for packing/unpacking primitive values in/out of byte arrays* using big-endian byte ordering.*/class Bits {/** Methods for unpacking primitive values from byte arrays starting at* given offsets.*/static boolean getBoolean(byte[] b, int off) {return b[off] != 0;}static char getChar(byte[] b, int off) {return (char) ((b[off + 1] & 0xFF) +(b[off] << 8));}static short getShort(byte[] b, int off) {return (short) ((b[off + 1] & 0xFF) +(b[off] << 8));}static int getInt(byte[] b, int off) {return ((b[off + 3] & 0xFF) ) +((b[off + 2] & 0xFF) << 8) +((b[off + 1] & 0xFF) << 16) +((b[off ] ) << 24);}static float getFloat(byte[] b, int off) {return Float.intBitsToFloat(getInt(b, off));}static long getLong(byte[] b, int off) {return ((b[off + 7] & 0xFFL) ) +((b[off + 6] & 0xFFL) << 8) +((b[off + 5] & 0xFFL) << 16) +((b[off + 4] & 0xFFL) << 24) +((b[off + 3] & 0xFFL) << 32) +((b[off + 2] & 0xFFL) << 40) +((b[off + 1] & 0xFFL) << 48) +(((long) b[off]) << 56);}static double getDouble(byte[] b, int off) {return Double.longBitsToDouble(getLong(b, off));}/** Methods for packing primitive values into byte arrays starting at given* offsets.*/static void putBoolean(byte[] b, int off, boolean val) {b[off] = (byte) (val ? 1 : 0);}static void putChar(byte[] b, int off, char val) {b[off + 1] = (byte) (val );b[off ] = (byte) (val >>> 8);}static void putShort(byte[] b, int off, short val) {b[off + 1] = (byte) (val );b[off ] = (byte) (val >>> 8);}static void putInt(byte[] b, int off, int val) {b[off + 3] = (byte) (val );b[off + 2] = (byte) (val >>> 8);b[off + 1] = (byte) (val >>> 16);b[off ] = (byte) (val >>> 24);}static void putFloat(byte[] b, int off, float val) {putInt(b, off, Float.floatToIntBits(val));}static void putLong(byte[] b, int off, long val) {b[off + 7] = (byte) (val );b[off + 6] = (byte) (val >>> 8);b[off + 5] = (byte) (val >>> 16);b[off + 4] = (byte) (val >>> 24);b[off + 3] = (byte) (val >>> 32);b[off + 2] = (byte) (val >>> 40);b[off + 1] = (byte) (val >>> 48);b[off ] = (byte) (val >>> 56);}static void putDouble(byte[] b, int off, double val) {putLong(b, off, Double.doubleToLongBits(val));}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。