文章列表
/* 案例4 从U盘到MP34
播放音乐
让U盘把内容写入文件,让播放器播放mpg 或avi视频
*/
////////////////////////////////////////////////////////////////
// "MP3"模拟程序
////////////////////////////////////////////////////////////////
#include<iostream>
# ...
/*
案例2 手机升级3
让用户通过菜单来使用手机
为高级手机再添加一些新功能
*/
#include <iostream>
#include<windows.h>
using namespace std;
///////////////////////////////////////////////////////
// MOBILE 类,父类
///////////////////////////////////////////////////////
class MOBILE
{
private: //私有成员
int ID; / ...
/*
案例2 整数的三位分节格式2
负数
*/
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int n,i=1;
char a[20],*ptr;
bool negative=false;
ptr = a;
cout << "Please input a integer:";
cin >> n;
if (n<0)
{
negative=true;
n=abs(n); ...
MenuList类继承了高级用户界面的List类,由于菜单属于IMPLICIT,因此需要监听各个选项的选定事件,并且还实现了CommandListener接口。