| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 471 人关注过本帖
标题:我把 C# 的编程放到了 C++,我想获取一个时间,但是不知道要怎么去入手
只看楼主 加入收藏
t120653918
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2014-7-18
结帖率:100%
收藏
 问题点数:0 回复次数:2 
我把 C# 的编程放到了 C++,我想获取一个时间,但是不知道要怎么去入手
#include<stdio.h>
#include<time.h>
#include<string.h>
void main()
{
     time_t rawtime;
     struct tm * Age;time ( &rawtime );
     Age = localtime ( &rawtime );
     getAge();
    Student std1=new Student();
    std1.no="2013111338";
    std1.na="lili";
    std1.se="女";
    std1.da="1993,01,01";
}

class Student
{
    public string stdno;
    public string stdna;
    public string stdse;
    public string stdda;

    int getAge();
    {
        DaTatime nowTime=DaTatime.Now;
    return nowTime.Year-stdda.Year;
    }
}
搜索更多相关主题的帖子: return public include 
2014-07-18 11:44
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9025
专家分:54030
注 册:2011-1-18
收藏
得分:0 
程序代码:
#include <cstdio>
#include <ctime>

int foo( const char* str )
{
    int year, mon=0, day=0, hour=0, min=0, sec=0;
    if( sscanf(str,"%d,%d,%d",&year,&mon,&day) != 3 )
        return -1;

    time_t raw = time( NULL );
    int cur_year = (localtime(&raw)->tm_year+1900);

    return cur_year - year;
}

int main()
{
    printf( "age = %d\n", foo("2014,01,01") );
    printf( "age = %d\n", foo("1993,01,01") );

    return 0;
}
2014-07-18 12:20
t120653918
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2014-7-18
收藏
得分:0 
回复 2 楼 rjsp
int cur_year = (localtime(&raw)->tm_year+1900);

这句不太理解,为什么会要指向tm_year+1900呢,加1900是做什么用的
2014-07-20 15:12
快速回复:我把 C# 的编程放到了 C++,我想获取一个时间,但是不知道要怎么去入手 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015948 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved