«println» 태그된 질문

4
왜 프린트하지 않습니까! 녹 단위 시험에서 일합니까?
다음 방법과 단위 테스트를 구현했습니다. use std::fs::File; use std::path::Path; use std::io::prelude::*; fn read_file(path: &Path) { let mut file = File::open(path).unwrap(); let mut contents = String::new(); file.read_to_string(&mut contents).unwrap(); println!("{}", contents); } #[test] fn test_read_file() { let path = &Path::new("/etc/hosts"); println!("{:?}", path); read_file(path); } 이 방법으로 단위 테스트를 실행합니다. rustc --test app.rs; …
285 rust  println 

5
Go에서 fmt.Println ()과 println ()의 차이점
아래 그림과 같이 모두 fmt.Println()와 println()이동에 동일한 출력을 제공합니다 :Hello world! 하지만 서로 어떻게 다른가요? fmt패키지를 사용하는 스 니펫 1 ; package main import ( "fmt" ) func main() { fmt.Println("Hello world!") } fmt패키지가 없는 스 니펫 2 package main func main() { println("Hello world!") }
117 go  println 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.