Q:

Swift program to create a simple class

belongs to collection: Swift Classes & Objects Programs

0

Here, we will create a user-defined class with data members. Then we will create an object of the class and access the value data members.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a simple class is given below. The given program is compiled and executed successfully.

// Swift program to create a simple class

import Swift

class Sample {
    var num1  = 100
    var num2  = 200
}

let obj = Sample()

print("Num1: ",obj.num1)
print("Num2: ",obj.num2)

Output:

Num1:  100
Num2:  200

...Program finished with exit code 0
Press ENTER to exit console.

Explanation:

In the above program, we imported a package Swift to use the print() function using the below statement,

import Swift

Here, we created a class Sample with two data members num1 and num2 initialized with 100, 200 respectively. Then we created the object obj of class Sample. After that, we accessed the value of data and printed them on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift program to create a class with the init() me... >>