2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-24 23:39:26 +00:00
|
|
|
trait Product {
|
2013-03-13 02:32:14 +00:00
|
|
|
fn product(&self) -> int;
|
2012-07-24 23:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo {
|
2012-09-07 21:50:47 +00:00
|
|
|
x: int,
|
|
|
|
y: int,
|
2012-07-24 23:39:26 +00:00
|
|
|
}
|
|
|
|
|
2013-05-31 22:17:22 +00:00
|
|
|
impl Foo {
|
|
|
|
pub fn sum(&self) -> int {
|
2012-07-24 23:39:26 +00:00
|
|
|
self.x + self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 19:47:00 +00:00
|
|
|
impl Product for Foo {
|
2013-03-13 02:32:14 +00:00
|
|
|
fn product(&self) -> int {
|
2012-07-24 23:39:26 +00:00
|
|
|
self.x * self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn Foo(x: int, y: int) -> Foo {
|
|
|
|
Foo { x: x, y: y }
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-07-24 23:39:26 +00:00
|
|
|
let foo = Foo(3, 20);
|
2013-09-25 05:16:43 +00:00
|
|
|
println!("{} {}", foo.sum(), foo.product());
|
2012-07-24 23:39:26 +00:00
|
|
|
}
|