Swift basic usage-var/let defining variables and constants

Source: Internet
Author: User
Playground-noun:a place where people can playimport uikit//------------------------------------------------------- -----------------------//1. Line prints a string println ("Hello, world!") ------------------------------------------------------------------------------//2. var (variable) & Let (constant)//var variable, after assignment can be modified/allow constant, after assignment cannot modify var a = 10var b = 20let c = 30b = 30//The following code attempts to modify the constant, error//c = 40//in the spell You can use the format "\ (variable name/constant name)" When you connect a string, var result = "\ (a) + \ (b) = \ (c)"//--------------------------------------------------------- ---------------------//3. Specifying the type when defining a variable//in Swift, the type of the variable is automatically inferred at compile time//usually when the variable is defined, it is not necessary to deliberately specify the type of the variable, if you need to specify, you can follow the following format: var i:int = 20var str:string = "Hello" str + = " "str + =" Swift "result = str +" \ (i) "

Swift basic usage-var/let defining variables and constants

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.