■ 절대/상대 경로를 사용해 모듈을 지정하는 방법을 보여준다.
▶ 예제 코드 (RS)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
mod aaa { pub mod bbb { pub mod ccc { pub fn print() { println!("aaa::bbb::ccc::print"); } } } pub mod ddd { pub mod eee { pub fn print() { println!("aaa::ddd:eee:print"); } } pub mod fff { pub fn print() { super::eee::print(); super::super::bbb::ccc::print(); } } } } fn main() { aaa::bbb::ccc::print(); aaa::ddd::eee::print(); crate::aaa::ddd::fff::print(); } |