博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
结构体和方法
阅读量:5066 次
发布时间:2019-06-12

本文共 1139 字,大约阅读时间需要 3 分钟。

结构体和方法

 

use std::fmt;#[derive(Debug)]struct Rectangle {    width: u32,    height: u32,}impl std::fmt::Display for Rectangle {    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {        write!(f, "Rectangle width: {} height: {}", self.width, self.height)    }}impl Rectangle {    fn area(&self) -> u32 {        self.width * self.width    }    fn can_hold(&self, other: &Rectangle) -> bool {        self.width > other.width && self.height > other.height    }    fn square(size: u32) -> Rectangle {        Rectangle {            width: size,            height: size,        }    }}fn main() {    let rect1 = Rectangle { width: 30, height: 50 };    let rect2 = Rectangle { width: 10, height: 40 };    let rect3 = Rectangle { width: 60, height: 45 };    let rect4 = Rectangle::square(40);    println!("Can rect1 hold rect2? {}", rect1.can_hold(&rect2));    println!("Can rect1 hold rect3? {}", rect1.can_hold(&rect3));    println!("rect4 is {}", rect4);    println!("rect4 is {:#?}", rect4);    println!(        "The area of the rectangle is {} square pixels.",        rect4.area()    );}

 

 

转载于:https://www.cnblogs.com/lsgxeva/p/8544200.html

你可能感兴趣的文章
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
idea的maven项目无法引入junit
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
Jmeter学习系列----3 配置元件之计数器
查看>>
jQuery 自定义函数
查看>>
jq 杂
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
作业一
查看>>