
rust语言
记录自学rust的笔记
dmh008
任何时候都要学习
展开
-
rust实现一个tcp server
服务端 use std ::net::{TcpListener,TcpStream}; use std::thread; use std::time; use std::io; use std::io::{Read,Write}; fn handle_client(mut stream: TcpStream) -> io::Result<()>{ let mut buf = [0;512]; for _ in 0..1000{ let bytes_原创 2021-05-24 22:20:12 · 1459 阅读 · 0 评论 -
rust编程语言(2)
变量和可变性 fn main() { let x = 5;//没加mut 属于不可变变量 println!("The value of x is: {}", x); x = 6;//程序运行到此次出现错误 println!("The value of x is: {}", x); } 变量和常量的区别 const MAX_POINTS: u32 = 100_000;声明常量使用 const 关键字而不是 let 隐藏 fn main(...原创 2021-05-21 00:37:38 · 162 阅读 · 0 评论 -
记录自学rust语言(1)
这是一个用rust编写的猜数字游戏。 use std::io; use rand::Rng; use std::cmp::Ordering; fn main() { println!("Guess the number!"); let secret_number = rand::thread_rng().gen_range(1,101); //println!("The secret number is:{}",secret_number); loop { ...原创 2021-05-18 21:55:15 · 227 阅读 · 1 评论