IOS: Learning notes, Swift namespaces

Source: Internet
Author: User

In Swift, namespaces are implemented using Class (extension) nesting, which is shown in a simple example.

  main.swift//  swiftnamespace////  Created by Yao_yu on 14-8-1.//  Copyright (c) 2014 Yao_yu. All rights reserved.////  Swift namespaces use instance//import foundation//define top-level namespace class yy{}//define second-level namespaces in YY namespaces testextension The yy{class    test{    }}//defines the point class extension YY in the two-layer namespace. test{    class point2d{        var x:double = 0        var y:double = 0                Init (_ x:double, _ y:double) {            self.x = X
  self.y = y        }    }}func Main () {    //Use point    var pt = YY. TEST.POINT2D (123, 333)    println ("point coordinates are (\ (pt.x), \ (PT.Y))")        //results are point coordinates (123.0,333.0)}main ()


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.