1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-07 09:46:12 +02:00

Add another another error exercise

This commit is contained in:
Carol (Nichols || Goulding) 2016-06-21 10:40:32 -04:00
parent ae46dfd752
commit 0b15e92738
2 changed files with 67 additions and 0 deletions

File diff suppressed because one or more lines are too long

66
error_handling/errors3.rs Normal file
View File

@ -0,0 +1,66 @@
// This is a program that is trying to use a completed version of the
// `total_cost` function from the previous exercise. It's not working though--
// we can't call the `try!` macro in the `main()` function! Why not?
// What should we do instead? Scroll for hints!
use std::num::ParseIntError;
fn main() {
let mut tokens = 100;
let pretend_user_input = "8";
let cost = try!(total_cost(pretend_user_input));
if cost > tokens {
println!("You can't afford that many!");
} else {
tokens -= cost;
println!("You now have {} tokens.", tokens);
}
}
pub fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
let processing_fee = 1;
let cost_per_item = 5;
let qty = try!(item_quantity.parse::<i32>());
Ok(qty * cost_per_item + processing_fee)
}
// Since the `try!` macro returns an `Err` early if the thing it's trying to
// do fails, you can only use the `try!` macro in functions that have a
// `Result` as their return type.
// The error that you get if you run this code is:
// ```
// error: mismatched types:
// expected `()`,
// found `std::result::Result<_, _>`
// ```
// which is saying that the expected return type of the `main` function is
// the empty tuple, but we tried to return a `Result`-- and that's happening
// in the implementation of `try!`. The `main` function never has a return type,
// so we have to use another way of handling a `Result` within `main`.
// Decide what we should do if `pretend_user_input` has a string value that does
// not parse to an integer, and implement that instead of calling the `try!`
// macro.