博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第七周项目2-自选图形用户界面程序开发
阅读量:6096 次
发布时间:2019-06-20

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

经过这几天的使用VS,发现其实和VB还是有一些相同的地方,所以对于控件还是能够很好的了解他们的作用。

这是今天上机的时候写得一个“长方体求解”的程序,主要还是多练习练习,熟悉一下。

创建一个“Bank”项目,在bankget.h中,创建一个类:

class Bank{private:	int leight;	int weight;	int height;public:	void get(int, int, int);	int getarea();	int getvo();};
在bankget.cpp中,完成内置函数的声明:

#include "stdafx.h"#include "Bank.h"#include "bankget.h"void Bank::get(int l, int w, int h){	leight = l;	weight = w;	height = h;}int Bank::getarea(){	return (2 * (leight*weight + weight*height + leight*height));}int Bank::getvo(){	return (leight*height*weight);}
在BankDlg.cpp中,增加对按钮button的函数实现:

void CBankDlg::OnBnClickedButton1(){	UpdateData();	Bank b1;	b1.get(b_l, b_w, b_h);	b_area = b1.getarea();	b_vo = b1.getvo();	UpdateData(false);}
结果如图:

@ Mayuko

转载于:https://www.cnblogs.com/mayuko/p/4567504.html

你可能感兴趣的文章
我的友情链接
查看>>
华为交换机配置ssh登陆
查看>>
同步两个数据库
查看>>
用简单代码看卷积组块发展
查看>>
《uname命令》-linux命令五分钟系列之五
查看>>
为php添加xcache
查看>>
CSV文件写入,解决汉字乱码
查看>>
linux中查找某个命令是哪个包提供的
查看>>
php验证码类
查看>>
使用curl操作github API V3(1)
查看>>
GNU screen视频教程
查看>>
配置Ipython Nodebook 运行 Python Spark 程序
查看>>
浅谈引导搜索推广
查看>>
USB-FPA在Win7之下的驱动
查看>>
集合框架---Map Set List初步理解
查看>>
海量端口扫描工具masscan
查看>>
Django简介
查看>>
如何在shell下免密码快速登陆MySQL数据库?
查看>>
java1234 shiro 第0 .1课 缓存
查看>>
CSS字体样式
查看>>