Java Utililty Methods BCD Create

List of utility methods to do BCD Create

  1. HOME
  2. Java
  3. B
  4. BCD Create

Description

The list of methods to do BCD Create are organized into topic(s).

Method

int bcdValue(byte value)
Convert byte to BCD integer.
return 10 * (0x0f & (value >> 4)) + (0x0f & value);

AltStyle によって変換されたページ (->オリジナル) /