UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Class inheritance

Question 1/12: This code demonstrates valid class inheritance – true or false?

Hint: Click to show.

class Vehicle {
	var wheels: Int
	init(wheels: Int) {
		self.wheels = wheels
	}
}
class Truck: Vehicle {
	var goodsCapacity: Int
	init(wheels: Int, goodsCapacity: Int) {
		self.goodsCapacity = goodsCapacity
		super.init()
	}
}

Return to Review Menu

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code
 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.