일련의 질문을 연속적으로 수행 할 수있는 PromptSet
을 구축 중입니다. 테스트 목적으로 stdout & stdout을 직접 사용하는 대신 독자와 작성자를 전달할 수 있습니다.생성자에서 표준 입출력을 사용하여 생성하는 구조체만큼 오래 살아갈 수 있습니까?
stdin과 stdout이 일반적인 사용 사례이므로 어떤 매개 변수 없이도 사용자가 PromptSet<StdinLock, StdoutLock>
을 생성 할 수 있도록 기본 "생성자"를 만들고 싶습니다.
use std::io::{self, BufRead, StdinLock, StdoutLock, Write};
pub struct PromptSet<R, W>
where
R: BufRead,
W: Write,
{
pub reader: R,
pub writer: W,
}
impl<R, W> PromptSet<R, W>
where
R: BufRead,
W: Write,
{
pub fn new(reader: R, writer: W) -> PromptSet<R, W> {
return PromptSet {
reader: reader,
writer: writer,
};
}
pub fn default<'a>() -> PromptSet<StdinLock<'a>, StdoutLock<'a>> {
let stdin = io::stdin();
let stdout = io::stdout();
return PromptSet {
reader: stdin.lock(),
writer: stdout.lock(),
};
}
pub fn prompt(&mut self, question: &str) -> String {
let mut input = String::new();
write!(self.writer, "{}: ", question).unwrap();
self.writer.flush().unwrap();
self.reader.read_line(&mut input).unwrap();
return input.trim().to_string();
}
}
fn main() {}
StdinLock
및 StdoutLock
모두가 선언 된 수명을 필요 : 여기에 지금까지 코드입니다. 그것을 복잡하게하기 위해서, 나는 원래의 stdin()
/stdout()
핸들이 적어도 자물쇠만큼 오래 살 필요가 있다고 생각한다. StdinLock
과 StdoutLock
에 대한 참조가 내 PromptSet
이긴하지만 내가 무엇을 시도하든 상관없이 내가 살아갈 수 있기를 바랍니다. 난 그냥 수명 또는 뭔가 다른 슈퍼 기본 개념을 이해하지 못하는
error[E0597]: `stdin` does not live long enough
--> src/main.rs:30:21
|
30 | reader: stdin.lock(),
| ^^^^^ borrowed value does not live long enough
...
33 | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the method body at 25:5...
--> src/main.rs:25:5
|
25 |/ pub fn default<'a>() -> PromptSet<StdinLock<'a>, StdoutLock<'a>> {
26 | | let stdin = io::stdin();
27 | | let stdout = io::stdout();
28 | |
... |
32 | | };
33 | | }
| |_____^
error[E0597]: `stdout` does not live long enough
--> src/main.rs:31:21
|
31 | writer: stdout.lock(),
| ^^^^^^ borrowed value does not live long enough
32 | };
33 | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the method body at 25:5...
--> src/main.rs:25:5
|
25 |/ pub fn default<'a>() -> PromptSet<StdinLock<'a>, StdoutLock<'a>> {
26 | | let stdin = io::stdin();
27 | | let stdout = io::stdout();
28 | |
... |
32 | | };
33 | | }
| |_____^
그것은 완벽하게 가능 : 여기에 내가 점점 계속 오류입니다.
[기능에서 생성 된 변수에 대한 참조를 반환하는 방법이 있습니까? (http://stackoverflow.com/q/32682876/155423) – Shepmaster
질문 고쳐 경우에 표준 입력/표준 출력 그건 복제본이 아닙니다. stdin/stdout은 다소 특별한 경우입니다. –