BaşlayınÜcretsiz Başlayın

Using Wrappers

Because wrappers and primitives often look very similar in code, it takes some practice to work with wrappers. Wrapper classes come with a number of important methods that make comparing, converting, and generally working with data easier. In this exercise, you will experiment with several wrapper methods and fields.

Bu egzersiz

Data Types and Exceptions in Java

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Compare the value of pi to eulers value using the .compareTo() method.
  • Print out the maximum allowed short primitive value.
  • Parse the string "true" to a boolean primitive using Boolean's .parseBoolean() method.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

public class ExamineWrappers {

	public static void main(String[] args) {
		Double pi = 3.14;
		Double eulers = 2.71828;
		// Compare pi's value to euler's
		int x = ____.____(____);
		System.out.println(x);

		// Use Short to print out the maximum short
		System.out.println(____.____);

		// Use Boolean to turn string "true" to a boolean
		boolean y = ____.____("____");
		System.out.println(y);
	}
}
Kodu Düzenle ve Çalıştır