Pytania otagowane jako println

4
Dlaczego nie drukuje! pracować w testach jednostkowych Rust?
Wdrożyłem następującą metodę i test jednostkowy: 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); } Test jednostkowy uruchamiam w ten sposób: rustc …
285 rust  println 

5
Różnica między fmt.Println () i println () w Go
Jak pokazano poniżej, oba fmt.Println()i println()dają te same wyniki w Go:Hello world! Ale: czym różnią się od siebie? Snippet 1, używając fmtpakietu; package main import ( "fmt" ) func main() { fmt.Println("Hello world!") } Snippet 2, bez fmtpakietu; package main func main() { println("Hello world!") }
117 go  println 
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.