Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5542345
  • 博文数量: 763
  • 博客积分: 12108
  • 博客等级: 上将
  • 技术积分: 15717
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-28 21:21
个人简介

业精于勤,荒于嬉

文章分类

全部博文(763)

文章存档

2018年(6)

2017年(15)

2016年(2)

2015年(31)

2014年(14)

2013年(87)

2012年(75)

2011年(94)

2010年(190)

2009年(38)

2008年(183)

2007年(28)

分类: C/C++

2009-02-09 22:10:30

/*
*    定义函数 char * GetPassword(char* _pPassword, int _nLen, char _chShow);
*    表头文件 #include
*    函数描述    密码读取函数,从终端度取密码。
*                        _pPassword 要有足够的空间来容纳读取的密码。
*                        _nLen 限制密码的最大长度
*                        _chShow 为输入密码后回显的字符。值为 0 时不回显。
*     返回值     返回 _pPassword 的字符串起始地址。     
*        作 者 武立强
*        时    间    2009-02-08
*        注    意    \b Backspace \n Newline \r Carriage return
*                        getch() 读取一个字符,不回显.
*/

char * GetPassword(char* _pPassword, int _nLen, char _chShow)
{
    assert( NULL != _pPassword );

    int nCourrent = 0;
    char * pFirst = _pPassword;

    while(1)
    {
        *_pPassword = getch();
        
        if( '\n' == *_pPassword || '\r' == *_pPassword )
        {    
            *_pPassword = '\0';
            break;
        }
        else if( '\b' == *_pPassword && 0 == nCourrent )
        {
            continue;        
        }
        else if( '\b' == *_pPassword && 0 == _chShow )
        {
            _pPassword--;
            nCourrent--;
            continue;
        }
        else if( '\b' == *_pPassword )
        {
            _pPassword--;
            nCourrent--;
            printf("\b \b"); // 注意细节,中间有个空格

            continue;
        }
        else if( nCourrent >= _nLen )
        {
            continue;    
        }
    
        // 是否回显

        if( 0 != _chShow )
        {
            printf("%c", _chShow);
        }    
        _pPassword++;
        nCourrent++;
    }
    _pPassword = NULL;

    return pFirst;
}

 
自己写的函数,欢迎多提意见.
阅读(1432) | 评论(0) | 转发(0) |
0

上一篇:计算大使 (我的小练习)

下一篇:StringReplace

给主人留下些什么吧!~~