Swift object-oriented attributes of classes and objects, swift object-oriented

Source: Internet
Author: User

Swift object-oriented attributes of classes and objects, swift object-oriented

In Swift, attributes of classes and objects are divided into three types: storage attributes, calculation attributes, and class attributes.

Import Foundationclass Person {// The Initial Value var score1: Int = 20 var score2: Int = 50 // The Delayed Storage attribute must be assigned to the import Foundationclass Person {// storage attribute. If needed, lazy var dog is assigned: dog = Dog () // calculates the attribute. The initial value cannot be assigned. The get and set methods are provided. var sum: Int {get {return score1 + score2 }}// class attribute, it can only be a computing attribute and can be called using classes rather than objects // such as Person. desc class var desc: String {get {return "This is one person. "}}// constructor init () {println (" This is one person. ")} class Dog {init () {println (" This is one dog. ")} var p = Person () println (Person. desc) println (p. score1) println (p. score2) println (p. sum) println (p. dog)

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.