1
+ // errors3.rs
1
2
// This is a program that is trying to use a completed version of the
2
3
// `total_cost` function from the previous exercise. It's not working though--
3
- // we can't call the `try!` macro in the `main()` function! Why not?
4
+ // we can't use the `?` operator in the `main()` function! Why not?
4
5
// What should we do instead? Scroll for hints!
5
6
6
7
use std:: num:: ParseIntError ;
@@ -9,7 +10,7 @@ fn main() {
9
10
let mut tokens = 100 ;
10
11
let pretend_user_input = "8" ;
11
12
12
- let cost = try! ( total_cost ( pretend_user_input) ) ;
13
+ let cost = total_cost ( pretend_user_input) ? ;
13
14
14
15
if cost > tokens {
15
16
println ! ( "You can't afford that many!" ) ;
@@ -22,7 +23,7 @@ fn main() {
22
23
pub fn total_cost ( item_quantity : & str ) -> Result < i32 , ParseIntError > {
23
24
let processing_fee = 1 ;
24
25
let cost_per_item = 5 ;
25
- let qty = try! ( item_quantity. parse :: < i32 > ( ) ) ;
26
+ let qty = item_quantity. parse :: < i32 > ( ) ? ;
26
27
27
28
Ok ( qty * cost_per_item + processing_fee)
28
29
}
@@ -44,23 +45,18 @@ pub fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
44
45
45
46
46
47
47
- // Since the `try!` macro returns an `Err` early if the thing it's trying to
48
- // do fails, you can only use the `try!` macro in functions that have a
48
+ // Since the `?` operator returns an `Err` early if the thing it's trying to
49
+ // do fails, you can only use the `?` operator in functions that have a
49
50
// `Result` as their return type.
50
51
51
- // The error that you get if you run this code is:
52
+ // Hence the error that you get if you run this code is:
52
53
53
54
// ```
54
- // error: mismatched types:
55
- // expected `()`,
56
- // found `std::result::Result<_, _>`
55
+ // error[E0277]: the `?` operator can only be used in a function that returns `Result` (or another type that implements `std::ops::Try`)
57
56
// ```
58
57
59
- // which is saying that the expected return type of the `main` function is
60
- // the empty tuple, but we tried to return a `Result`-- and that's happening
61
- // in the implementation of `try!`. The `main` function never has a return type,
62
- // so we have to use another way of handling a `Result` within `main`.
58
+ // So we have to use another way of handling a `Result` within `main`.
63
59
64
60
// Decide what we should do if `pretend_user_input` has a string value that does
65
- // not parse to an integer, and implement that instead of calling the `try! `
66
- // macro .
61
+ // not parse to an integer, and implement that instead of using the `? `
62
+ // operator .
0 commit comments