网站首页 站内搜索

搜索结果

查询Tags标签: 1.34,共有 2条记录
  • 运算符2

    //按位运算符/*a = 60 b = 13a = 60 00111100b = 13 00001101a & b 00001100 全1为1,有0为0a | b 00111101 全0为0,有1为1a ^ b 00110001 相异为1,相同为0*///运算符的本质val i :Int = 32val j :Int = 34println(i.+(j))println(i + j)printl…

    2022/5/11 23:18:10 人评论 次浏览
  • Ubuntu 上安装rust

    sudo apt install rustc检验rustc -V rustc 1.34.2cargo -Vcargo 1.34.0安装vscode 安装插件 rls 和 Native Debug 两个扩展。 可以参考如下代码 https://www.runoob.com/rust/rust-setup.html

    2021/4/23 7:25:18 人评论 次浏览
扫一扫关注最新编程教程