Skip to content

Instantly share code, notes, and snippets.

@toshinoritakata
Last active December 11, 2015 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toshinoritakata/4544211 to your computer and use it in GitHub Desktop.
Save toshinoritakata/4544211 to your computer and use it in GitHub Desktop.
signedなjavaのbyteをintにキャストする方法 http://javafaq.jp/S007.html 参考
byte b = 200;
int i = b & 0xFF;
System.out.println( i ); // 200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment