zoukankan      html  css  js  c++  java
  • C语言标准

    #pragma once

    /* 将a.h可以看成是c++里面的a类的声明,注意在.h文件中不可定义外部变量,只能声明外部变量,意思是不能出现extern int abc = 1*/

    /*类似于public*/
    extern int foo1(int input);/* 外部方法*/
    extern int abc;/* 外部变量,声明变量abc*/

    /*类似于private*/
    static int foo2(int input);/* 内部方法*/
    static int abd = 20;/* 内部变量,定义变量abc, 最好赋予初值*/

    /* 外部常量最好使用宏定义 */
    #define MAX_NUM 2001;

    /* 内部常量最好使用const定义 */
    static const int abe = 20;

    #include "C.h"

    /* 将a.h可以看成是c++里面的a类的定义*/

    int abc = 10; /* 定义外部变量 */

    int foo1(int input) /* 定义外部方法 */
    {
    abd++;
    return 1;
    }

    int foo2(int input) /* 定义内部方法 */
    {
    return 1;
    }

  • 相关阅读:
    centos7上安装JupyterHub
    我的测试第一篇博客
    TCP,SYN,FIN扫描
    nmap使用帮助翻译
    MySQL 常用函数
    MySQL 视图
    MySQL 索引
    JAVA 注解
    JAVA 反射
    spring boot MySQL极简封装
  • 原文地址:https://www.cnblogs.com/wl-v/p/6369439.html
Copyright © 2011-2022 走看看