📄 byteshelper.java
字号:
//$Id: BytesHelper.java 4597 2004-09-26 03:17:21Z oneovthafew $package org.hibernate.util;public final class BytesHelper { private BytesHelper() {} public static int toInt( byte[] bytes ) { int result = 0; for (int i=0; i<4; i++) { result = ( result << 8 ) - Byte.MIN_VALUE + (int) bytes[i]; } return result; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -