Download presentation
Presentation is loading. Please wait.
Published byKristian Perry Modified over 9 years ago
1
Data Representation Prepared by Dr P Marais (Modified by D Burford)
2
Bits, Bytes, Words Bit is a single binary digit Byte is 8 bits Word can be 16-bits (2 bytes) or 32-bits (4 bytes).
3
Basic data types in Java byte:8-bits, 1 byte (surprisingly!) short:16-bits, 2 bytes int:32-bits, 4 bytes long:64-bits, 8 bytes float:32-bits, 4 bytes double:64-bits, 8 bytes
4
Bits, Bytes, Words Bytes are often written using hexadecimal One byte (8-bits) can be made up of 2 hexadecimal digits (4-bits each). E.g. –byte b = 15; // 0F in hex –byte b = 255; // FF in hex –int i = 1,000,000; // 3B 9A CA 00 in hex
5
Byte Ordering “Endianess”: ordering of bytes in computer memory 012……nn+1n+2… Bytes in memory … low address high address n+3
6
Byte Ordering Big Endian: –Bytes ordered from Most Significant Byte (MSB) to Least Significant Byte (LSB) Little Endian: –Bytes ordered from LSB to MSB
7
Byte Ordering: Example E.g. How is 00 00 01 0F (32-bit number) represented in memory? 012……nn+1n+2… … low address high address n+3
8
Byte Ordering: Example E.g. How is 00 00 01 0F (32-bit number) represented in memory? high address 012……nn+1n+2… … 00 01 0F low address n+3 BIG ENDIAN MSBLSB
9
Byte Ordering: Example E.g. How is 00 00 01 0F (32-bit number) represented in memory? high address 012……nn+1n+2… … 0F 01 00 low address n+3 LITTLE ENDIAN LSBMSB
10
Byte Ordering Problems with multi-byte data: floats, ints etc. Sun is Big Endian, Intel is Little Endian Bit ordering issues as well: endian on MSb/LSb
11
Character Representations Characters represented using “character set” –ASCII (8-bit) –Unicode (16-bit)
12
Character Representations: ASCII ASCII - American Standard Code for Information Interchange 8-bits means 256 characters (0-255) ASCII codes for roman alphabet, numbers, keyboard symbols and basic network control
14
Character Representations: Unicode Unicode: 16-bits, quite new: subsumes ASCII, extensible, supported by Java 16-bits means 65 536 characters (0-65 535) Handles many languages, not just roman alphabet, symbols
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.