...
Wiki Markup |
---|
The general contract for the {{write()}} method says that it writes one byte to the output stream. The byte to be written constitutes the eight lower order bits of the argument {{b}}, passed to the {{write()}} method. The 24 high-order bits of {{b}} are ignored \[[API 2006|AA. Java References#APIBibliography#API 06]\]. |
Noncompliant Code Example
...
Wiki Markup |
---|
\[[API 2006|AA. Java References#APIBibliography#API 06]\] method [write()|http://java.sun.com/javase/6/docs/api/java/io/OutputStream.html#write(int)] \[[Harold 1999|AA. Java References#HaroldBibliography#Harold 99]\] |
...
INT08-J. Provide mechanisms to handle unsigned data when required 06. Integers (INT) 07. Floating Point (FLP)