Swift Grammar Note 01

Source: Internet
Author: User

There are so many new and exciting places in Swift. Damn it

var Display:int {

Get ()

Set ()

}

Tuple:

Let x: (D:double, e:string, f:int) = (3.1415, "Hello", 1)

X.D X.E X.F

Let (a,b,c) = X

Print (A,B,C)

Range:

Let array=["a", "B", "C", "D", "E"]

Let SubArray1 = array[2...4]//C d E

Let SubArray2 = array[2..<4]//C D

than the Python string [::] or to be nearly

For LOP in 1...100//printing from 1 to 100

The class in Swift is referenced (as in Java), functions, etc. can change the values of the members passed into the class

class Foo {    var value:int = 100}func Add (f:foo) {    F.value + = 1}let test = foo () Add (test) Test.value

Array:

var a = array<string> ()

Or

var a = [String] ()

Filter map reduce

Dictionary

var dic = dictionary<string, int> ()

var dic = [String:int] ()

Swift Grammar Note 01

Related Article

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.