从c到c++

目录

C到C++

    头文件

        C风格

        C++风格

    输入输出

        输出

        输入

    命名空间

        作用

        创建

        使用

            ::作用域限定符

            名字空间声明

            名字空间指令

        命名空间合并

        声明和定义分开

        命名空间嵌套

        命名空间别名

 

C到C++

01

头文件

C风格

#include<stdio.h>
#include<math.h>

C++风格

#include<iostream>
#include<cstdio>        //C++风格 
#include<cmath>         //math.h cmath

02

输入输出

::作用域限定符

#include<iostream>
using namespace std;    //命名空间 名字空间
int main()
{
    std::cout << "hello world" << std::endl;
    return 0;
}

名字空间声明

using 名字空间::成员

#include<iostream>
using std::cout;
using std::cin;
using std::endl;
namespace DeRoy
{
    void fun()
    {
        cout << "我是DeRoy的fun函数" << endl;
    }
}
using DeRoy::fun;//DeRoy空间里面的fun函数全局可见
int main()
{
    cout << "hello world" << endl;
    fun();    //调用fun函数
    return 0;
}

名字空间指令

using namespace 名字空间

#include<iostream>
using namespace std;    //命名空间 名字空间
namespace DeRoy
{
    void fun()
    {
        cout << "我是DeRoy的fun函数" << endl;
    }
}
using namespace DeRoy;
int main()
{
    std::cout << "hello world" << std::endl;
    fun();
    return 0;
}

命名空间合并

#include<iostream>
using namespace std;    //命名空间 名字空间
namespace DeRoy
{
    void fun()
    {
        cout << "我是DeRoy的fun函数" << endl;
    }
}
namespace DeRoy        //命名空间合并     同名空间合并
{
    void test()
    {
        cout << "我是DeRoy的test函数" << endl;
    }
}
int main()
{
    DeRoy::fun();
    DeRoy::test();
    return 0;
}

声明和定义分开

#include<iostream>
using namespace std;    //命名空间 名字空间
namespace DeRoy        //命名空间合并     同名空间合并
{
    void test();
}
void DeRoy::test()    //命名空间成员函数 声明和定义分开
{
    cout << "我是DeRoy的out函数" << endl;
}
int main()
{
    DeRoy::test();
    return 0;
}

命名空间嵌套

//命名空间嵌套
namespace ShanXi
{
    namespace XiAn
    {
        namespace ChangAn
        {
            void SchoolName()
            {
                cout << "西北工业大学" << endl;
            }
        }
    }
}

命名空间别名

namespace Changan = ShanXi::XiAn::ChangAn;

思维导图:

640?wx_fmt=png&tp=wxpic&wxfrom=5&wx_lazy=1&wx_co=1

#include<stdio.h>
#include<iostream>
using namespace std;    //命名空间 名字空间两种叫法
int main()
{
    //输出
    printf("hello world\n");
    cout << "hello world" << endl;  //endl endline换行
    //输入
    int num;
    scanf("%d", &num);
    cin >> num;
    system("pause");
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值