knowledge-kitchen / course-notes
+ - 0:00:00
Notes for current slide
Notes for next slide

Data Types

Allocate yourself some space

1 / 29

Primitive Types

3 / 29

Primitive Types

Overview

Java natively supports 8 fundamental primitive data types:

  • byte = 8-bit signed integer
  • short = 16-bit signed signed integer
  • int = 32-bit signed integer (the default for integer literals)
  • long = 64-bit signed floating-point number
  • float = 32-bit floating point floating-point number
  • double = 64-bit floating point number (the default for floating point literals)
  • char = 16-bit Unicode character code
  • boolean = 1-bit true (1) or false (0) value
  • arrays, while not a data type, are a fundamental primitive data structure in Java
3 / 29

Primitive Types

Observations

  • float and double are fundamentally inaccurate. Use java.math.BigDecimal for accuracy.
  • there is no String primitive data type in Java. String is a class that is written in object-oriented Java code.
  • because it contains "primitive" data types, rather than only class types, Java is not a purely object-oriented language.
4 / 29

Utility/Helper/Wrapper classes

5 / 29

Utility/Helper/Wrapper classes

Overview

The Java API (a set of classes written in Java that are distributed with Java) offers a set of object-oriented utility classes to help manipulate data of the fundamental primitive data types and structures.

  • Byte
  • Short
  • Integer
  • Long
  • Float
  • Double
  • Character
  • Boolean
  • Arrays
5 / 29

Utility/Helper/Wrapper classes

Overview

The Java API (a set of classes written in Java that are distributed with Java) offers a set of object-oriented utility classes to help manipulate data of the fundamental primitive data types and structures.

  • Byte
  • Short
  • Integer
  • Long
  • Float
  • Double
  • Character
  • Boolean
  • Arrays

These classes are especially helpful when converting a value of one data type to another.

5 / 29

Utility/Helper/Wrapper classes

Observations

  • Utility classes contain useful methods for manipulating the types of data usually stored as fundamental primitive data types.
  • They are often called "wrapper" or "helper" classes because they offer additional functionality built around primitive data types.
  • These are fully-objected-oriented correlates of the fundamental primitive data types.
6 / 29

Apache Commons Lang

7 / 29

Apache Commons Lang

Overview

Due to the limitations of working with primitive data types and the conservative nature of the Java API's included Utility/HelperWrapper/ classes, the Apache Software Foundation sponsors a project called Commons Lang that aims to provide functionality that many programmers regret is not present in the Java API. This library includes additional helper classes, such as:

  • NumberUtils
  • CharUtils
  • BooleanUtils
  • ArrayUtils
  • ... and many more for dealing with data of non-primitive types.
7 / 29

Apache Commons Lang

Overview

Due to the limitations of working with primitive data types and the conservative nature of the Java API's included Utility/HelperWrapper/ classes, the Apache Software Foundation sponsors a project called Commons Lang that aims to provide functionality that many programmers regret is not present in the Java API. This library includes additional helper classes, such as:

  • NumberUtils
  • CharUtils
  • BooleanUtils
  • ArrayUtils
  • ... and many more for dealing with data of non-primitive types.

Commons Lang is perhaps most well-known for its String-related helper classes: StringUtils, WordUtils, and StringEscapeUtils.

7 / 29

Java New Input/Output

8 / 29

Java New Input/Output

Incompatible file paths

Despite Java's proclamed "Write once, run anywhere" paradigm, writing programs that deal consistently with file paths across Windows, Mac, Linux, and Unix computers is annoying problematic.

8 / 29

Java New Input/Output

Incompatible file paths

Despite Java's proclamed "Write once, run anywhere" paradigm, writing programs that deal consistently with file paths across Windows, Mac, Linux, and Unix computers is annoying problematic.

Example Windows file path:

C:\Users\fernando\Documents\my_file.txt
8 / 29

Java New Input/Output

Incompatible file paths

Despite Java's proclamed "Write once, run anywhere" paradigm, writing programs that deal consistently with file paths across Windows, Mac, Linux, and Unix computers is annoying problematic.

Example Windows file path:

C:\Users\fernando\Documents\my_file.txt

Equivalent Mac/Unix/Linux file path:

/Users/fernando/Documents/my_file.txt
8 / 29

Java New Input/Output

Incompatible file paths

Despite Java's proclamed "Write once, run anywhere" paradigm, writing programs that deal consistently with file paths across Windows, Mac, Linux, and Unix computers is annoying problematic.

Example Windows file path:

C:\Users\fernando\Documents\my_file.txt

Equivalent Mac/Unix/Linux file path:

/Users/fernando/Documents/my_file.txt

As you can see, the root of the file path is different (C:\ versus an initial /), and the separator between directories is different (e.g. \ versus /).

8 / 29

Java New Input/Output

Escaping escape characters

Furthermore, the standard string escape character, \ happens to be used in Windows as a file paths. So to avoid that back slash being interpreted as an escape character, it must itself be escaped.

String path = "C:\\Users\\fernando\\Documents\\my_file.txt";
9 / 29

Java New Input/Output

Escaping escape characters

Furthermore, the standard string escape character, \ happens to be used in Windows as a file paths. So to avoid that back slash being interpreted as an escape character, it must itself be escaped.

String path = "C:\\Users\\fernando\\Documents\\my_file.txt";

This type of problem borders on the absurd.

9 / 29

Java New Input/Output

java.nio.file.Path

The Java API offers a "new" solution to this problem in the form of the java.nio.file.Path class, which allows us to deal with file paths in a platform-independent way.

String path = Paths.get("C:", "Users", "fernando", "Documents", "my_file.txt").toString();
10 / 29

Java New Input/Output

java.nio.file.Path

The Java API offers a "new" solution to this problem in the form of the java.nio.file.Path class, which allows us to deal with file paths in a platform-independent way.

String path = Paths.get("C:", "Users", "fernando", "Documents", "my_file.txt").toString();

It also contains useful methods to find out the current working directory, which can be useful for determing the file paths of files in subdirectories of the current working directory:

String cwd = Paths.get("").toAbsolutePath().toString();
String another_path = Paths.get(cwd, "data", "my_other_file.txt").toString();
10 / 29

Strings Are Not Primitives

11 / 29

Strings Are Not Primitives

Overview

The == operator performs a comparison of the position in memory where two values are stored in memory.

  • It does not compare the values stored at those locations of memory
String x = "hello";
String y = "hello";
boolean theSameMemoryAddress = (x == y); // -> most likely true, but not guaranteed to be so
11 / 29

Strings Are Not Primitives

Overview

The == operator performs a comparison of the position in memory where two values are stored in memory.

  • It does not compare the values stored at those locations of memory
String x = "hello";
String y = "hello";
boolean theSameMemoryAddress = (x == y); // -> most likely true, but not guaranteed to be so
Scanner scn = new Scanner(System.in);
String x = "hello";
String y = scn.nextLine(); // let's imagine the user enters the same text, "hello"...
boolean theSameMemoryAddress = (x == y); // -> most likely false!, but not guaranteed to be so
11 / 29

Strings Are Not Primitives

String is a class

String is not a primitive data type, it's an object-oriented class.

  • Only primitive data types with the same value are guaranteed to be stored in the same spot in memory
  • So two Strings with the same value may be stored in different spots in memory
  • So the == operator may not always result in a true, when comparing two Strings, even those with the same text.
  • So use the .equals() method for Strings instead.
String x = "hello";
String y = "hello";
boolean theSameMemoryAddress = x.equals(x); // -> true if they contain the same text, false otherwise
12 / 29

Strings Are Not Primitives

StringBuilder

There is also a StringBuilder class, which is a utility class for the String class.

  • Even though String is actually fully object-oriented, Strings are immutable.
  • The StringBuilder class is a convenient mutable equivalent of the String class.
StringBuilder str = new StringBuilder();
str.append("goodbye");
str.append("foo");
str.append("world!");
str.delete(7,10); // remove the characters at index positions 7-9, i.e. "foo"
str.insert(" ", 7); // insert a space at index position 7
str.replace(0, 7, "hello"); // replaces the characters at index positions 0-6 (i.e. "goodbye) with "hello"
String result = str.toString(); // -> "hello world!";
System.out.println(result);
13 / 29

Converting Data Types

14 / 29

Converting Data Types

Double to int

Double dbl = new Double(5.0);
int integer = dbl.intValue();
14 / 29

Converting Data Types

Integer to String

String str = Integer.toString(5);
// or
String str = "" + 5;
15 / 29

Converting Data Types

Double to String

String str = Double.toString(5.0);
16 / 29

Converting Data Types

Long to String

String str = Long.toString(50L);
17 / 29

Converting Data Types

Float to String

String str = Float.toString(5.0F);
18 / 29

Converting Data Types

String to Integer

int i = Integer.valueOf("5").intValue();
// or
int i = Integer.parseInt("5");
19 / 29

Converting Data Types

String to Double

double d = Double.valueOf(str).doubleValue();
// or
double d = Double.parseDouble(str);
20 / 29

Converting Data Types

String to Long

long l = Long.valueOf("5").longValue();
// or
long l = Long.parseLong("5");
21 / 29

Converting Data Types

String to Float

float f = Float.valueOf("5").floatValue();
22 / 29

Converting Data Types

Decimal to Binary

String bin = Integer.toBinaryString(50);
23 / 29

Converting Data Types

Decimal to Hexadecimal

String hexstr = Integer.toHexString(50);
//or
String hexstr = Integer.toString(50, 16);
24 / 29

Converting Data Types

Hexadecimal to Decimal

int i = Integer.valueOf("B8DA3", 16).intValue();
//or
int i = Integer.parseInt("B8DA3", 16);
25 / 29

Converting Data Types

Char to String

String s = String.valueOf('c');
26 / 29

Converting Data Types

Integer to ASCII code

int i = (int) "A";
27 / 29

Converting Data Types

Catching Exceptions

Use exception handline to handle any problems encountered while attempting to convert one data type to another.

String aString = "foo bar baz bum"; // a string that has no obvious int equivalent
try{
// try to do the conversion...
i = Integer.parseInt(aString); // will fail and produce an Exception
}
catch(NumberFormatException e) {
// this block of code will run if there was a failure
System.out.println(e); // will output the Exception but not crash the program
}
28 / 29

Conclusions

29 / 29

Conclusions

Now we understand a bit about data types in Java.

29 / 29

Conclusions

Now we understand a bit about data types in Java.

  • Thank you. Bye.
29 / 29
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow