[c++] uf封装函数【自己做函数】

[复制链接]
梅雷工具箱发表于 2015-6-25 14:02:33 | 显示全部楼层 |阅读模式
uf封装函数【自己做函数】


// 比如函数mei_a  //字符串尾部 + aa
// 比如函数mei_b  //字符串尾部 + n个空格

#include <string.h>

//------------------------------------------------------
void mei_a(char *s) //字符串尾部 + aa
{
     strcat(s,"aa");
     return;
}

//------------------------------------------------------
void mei_a(int *n,char *s) //字符串尾部 + n个空格
{
    int i;
    for (i=-1;i<n-1;)
    {
    i++;
     strcat(s," ");
    }
    return;
}

//------------------------------------------------------
//-------------------- 使用方法如下 --------------------

char str1[33]="M123";

mei_a(str1); //使用封装函数//字符串尾部 + aa

uc1601(str1,1); //输出 M123aa

//-------------------- 使用方法如下 --------------------

int nn;
char str2[33]="M123";

mei_b(2,str2); //使用封装函数//字符串尾部 + n个空格

//str2 变成了 "M123  "


_____________________________________________________________________________ _

中磊UG二次开发教程 梅雷著 qq1821117007
学UG就上UG网 http://www.9sug.com/
就上UG网淘宝直营店
您需要登录后才可以回帖 登录 | 注册UG网 用百度帐号登录

本版积分规则