码迷,mamicode.com
首页 > 其他好文 > 详细

rust变量与可变性

时间:2019-12-01 10:11:27      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:更改   int   str   hello   名称   需要   变量   使用   type   

fn main() {
    //let x = 5;
    let mut x = 5;
    //通过const定义常量名称要大写,并且值不可更改
    const Y:i32=6;
    println!("Y is {}",Y);
    println!("The value of x is {}", x);
    x = 6;
    println!("The value of x is {}", x);

    //如果要覆盖上一个变量 需要使用let
    //如果不是let而改变了x的类型会出错
    //x = 1.23;
    let x = "hello";
    println!("x type changed to string ,{}",x);
    let x = x.len();
    println!("x len is {}",x)
}

rust变量与可变性

标签:更改   int   str   hello   名称   需要   变量   使用   type   

原文地址:https://www.cnblogs.com/c-x-a/p/11964846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!