Rust hello world 语法讲解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rust hello world 语法讲解相关的知识,希望对你有一定的参考价值。

Rust的hello world代码如下:

fn main() {
    println!("Hello, world!");
}
1、fn main()


fn main(){   }  这句是在 rust 中定义一个功能函数,main 和C语言、java语言里面的main一样,是执行 rust 程序的入口。

这里定义的 main 没有输入参数,也没有返回值。


功能函数的函数体使用大括号 { } 


2、println

println!("Hello, world!");
输入Hello,world 到终端(控制台)。


与java的 println 很像,有一点不同的是 println后面有一个叹号 ! 

这在 rust 中叫做 宏(macro)。

 每行 rust 语句和java类似,以 ; 分号结束。




原文地址:https://doc.rust-lang.org/book/getting-started.html


以上是关于Rust hello world 语法讲解的主要内容,如果未能解决你的问题,请参考以下文章

Rust hello world !

初窥门径:从hello world开始rust学习

rust 编写hello world redis

rust 编写hello world redis

rust 编写hello world redis

00_Rust安装及Hello World