面试题答案
一键面试// 定义书籍结构体
struct Book {
title: &'static str,
author: &'static str,
year: i32,
}
// 定义函数创建书籍结构体实例
fn create_book(title: &'static str, author: &'static str, year: i32) -> Book {
Book {
title,
author,
year,
}
}