码迷,mamicode.com
首页 > 其他好文 > 详细

编写自己的头文件

时间:2019-02-03 18:13:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:自己的   return   clu   string   fine   .cpp   http   技术   code   

1、头文件TestCpp.h

#ifndef TESTCPP_H
#define TESTCPP_H
struct TestCpp{
    std::string name;
    unsigned int id;
};
#endif

2、主函数testTestCpp.cpp

#include <iostream>
#include "TestCpp.h"
int main()
{
    TestCpp t1;
    t1.name = "xiaoming";
    t1.id = 20190203;    
    std::cout << "name: " << t1.name << std::endl;
    std::cout << "id: " << t1.id << std::endl;
    return 0;
}

技术图片

编写自己的头文件

标签:自己的   return   clu   string   fine   .cpp   http   技术   code   

原文地址:https://www.cnblogs.com/komean/p/10350628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!