Add a can_hold
method
This commit is contained in:
parent
a8248ed120
commit
0297302762
1 changed files with 14 additions and 4 deletions
|
@ -8,6 +8,10 @@ impl Rectangle {
|
|||
fn area(&self) -> u32 {
|
||||
self.width * self.height
|
||||
}
|
||||
|
||||
fn can_hold(&self, other: &Rectangle) -> bool {
|
||||
self.width > other.width && self.height > other.height
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
|
@ -15,9 +19,15 @@ fn main() {
|
|||
width: 30,
|
||||
height: 50,
|
||||
};
|
||||
let rect2 = Rectangle {
|
||||
width: 10,
|
||||
height: 40,
|
||||
};
|
||||
let rect3 = Rectangle {
|
||||
width: 60,
|
||||
height: 45,
|
||||
};
|
||||
|
||||
println!(
|
||||
"The area of the rectangle is {} square pixels.",
|
||||
rect1.area()
|
||||
);
|
||||
println!("Can rect1 hold rect2? {}", rect1.can_hold(&rect2));
|
||||
println!("Can rect1 hold rect3? {}", rect1.can_hold(&rect3));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue