当前位置:首页 » 编程软件 » 编译宏

编译宏

发布时间: 2022-01-20 04:53:36

1. 在c语言中“宏是什么意思”

宏定义是C提供的三种预处理功能的其中一种,这三种预处理包括:宏定义、文件包含、条件编译

宏定义又称为宏代换、宏替换,简称“宏”。
格式:
#define 标识符 字符串
其中的标识符就是所谓的符号常量,也称为“宏名”。
预处理(预编译)工作也叫做宏展开:将宏名替换为字符串。
掌握"宏"概念的关键是“换”。一切以换为前提、做任何事情之前先要换,准确理解之前就要“换”。
即在对相关命令或语句的含义和功能作具体分析之前就要换:
例:
#define PI 3.1415926
把程序中出现的PI全部换成3.1415926
说明:
(1)宏名一般用大写
(2)使用宏可提高程序的通用性和易读性,减少不一致性,减少输入错误和便于修改。例如:数组大小常用宏定义
(3)预处理是在编译之前的处理,而编译工作的任务之一就是语法检查,预处理不做语法检查。
(4)宏定义末尾不加分号;
(5)宏定义写在函数的花括号外边,作用域为其后的程序,通常在文件的最开头。
(6)可以用#undef命令终止宏定义的作用域
(7)宏定义不可以嵌套
(8)字符串" "中永远不包含宏
(9)宏定义不分配内存,变量定义分配内存。
(10)宏定义不存在类型问题,它的参数也是无类型的。

2. c语言gdb调试时怎么看预编译宏是否定义

gdb 看不了任何与宏有关的内容。宏在编译之前,就被预编译器替换掉了,对于编译器来说,根本看不到所谓的宏,所以编译出来的二进制代码中,也根本不会包含任何宏本身的信息,gdb也自然无法获取信息了。

3. 怎么在NDK的makefile加入预编译宏

一个程序使用宏:在代码中定义,在编译器编译的时候指定。所谓的makefile只是一个编译系统,最终还是调用编译器。
对于你的问题,在NDK的makefile中加入宏定义,换种说法是:如何给NDK的makefile添加编译选项,有一个LOCAL_CFLAGS就可以定义选项了(或许还有其他的xxxcflags的东西定义,具体就自己查手册)。
加入选项,如:-DMyMacro

ifeq ($(HOST_OS),linux)
LOCAL_CFLAGS := -DGCC
endif
lz要的是在这个吗

4. c++当中的预编译宏的问题

#ifndef HY //一般在头文件都都使用这种格式以防止头文件在同一文件中被包含两次。语名#ifndef hyong…..#endi表示仅当以前没有使用预处理器编译指令#define定义的名称hyong时才处理#ifndef….#endif之间的语句。

#define HY //在这里用define定义一个名字HY,以便在下次访问到该头文件时,使该名字已经被定义,从而让程序跳过#ifndef….#endif间的语句。

...

#endif

明白了??
如果还不明白,就下载本人的文章《C++名称空间与作用域专题》和《C++宏,预处理器,RTTI,typeid与强制类型转换》去了解了解吧。

5. C语言中的条件编译宏有哪些可以改进的方法

#include #define DEBUG int main() { int x=1,y=2,z=3; #ifdef DEBUG printf("%d,%d,%d\n",x,y,z); #endif return 0; } 你先试试这个这个程序看看有没有输出,然后再把#define DEBUG删掉重新运行程序看看。

6. c语言中怎么用命令提示窗口编译宏定义并打印出来!请指教.谢谢了.

安装 Visual Studio 后在开始菜单里找 Microsoft Visual C++ 命令提示符,打开后,用微软的编译器 cl 编译,不是 cpp。

7. office 2013编译宏代码后,出错,再打开,出现microsoft excel已停止工作

宏是寄生虫,不能脱离你的Office文档的。当然在你的文件里。
如果有瑕疵的代码位于工作簿打开事件中,就可能在工作簿打开时引起应用崩溃。
这时,最好是直接启动应用,并把宏安全性调高。然后才打开有问题的工作簿,并在系统提示是否运行宏时,选择禁止

8. ios cocoapods怎么添加预编译宏

ALT+F11打开VBE编辑器,将代码放进去,运行(单击工具----宏---宏找到这代码的名字运行就可以了)

9. devenv 命令行下怎么指定某个工程的编译宏

直接devenv /?

Microsoft (R) Visual Studio Version 9.0.30729.1.
Copyright (C) Microsoft Corp. All rights reserved.

Use:
devenv [solutionfile
projectfile
anyfile.ext] [switches]

The first argument for devenv is usually a solution file or project file.
You can also use any other file as the first argument if you want to have the
file open automatically in an editor. When you enter a project file, the IDE
looks for an .sln file with the same base name as the project file in the
parent directory for the project file. If no such .sln file exists, then the
IDE looks for a single .sln file that references the project. If no such single
.sln file exists, then the IDE creates an unsaved solution with a default .sln
file name that has the same base name as the project file.

Command line builds:
devenv solutionfile.sln /build [ solutionconfig ] [ /project projectnameorfile [
/projectconfig name ] ]
Available command line switches:

/Build Builds the solution or project with the specified solution
configuration. For example "Debug". If multiple platforms
are possible, the configuration name must be enclosed in quotes
and contain platform name. For example: "Debug
Win32".
/Clean Deletes build outputs.
/Command Starts the IDE and executes the command.
/Deploy Builds and then deploys the specified build configuration.
/Edit Opens the specified files in a running instance of this
application. If there are no running instances, it will
start a new instance with a simplified window layout.
/LCID Sets the default language in the IDE for the UI.
/Log Logs IDE activity to the specified file for troubleshooting.
/NoVSIP Disables the VSIP developer's license key for VSIP testing.
/Out Appends the build log to a specified file.
/Project Specifies the project to build, clean, or deploy.
Must be used with /Build, /Rebuild, /Clean, or /Deploy.
/ProjectConfig Overrides the project configuration specified in the solution
configuration. For example "Debug". If multiple platforms are
possible, the configuration name must be enclosed in quotes
and contain platform name. For example: "Debug
Win32".
Must be used with /Project.
/Rebuild Cleans and then builds the solution or project with the
specified configuration.
/ResetAddin Removes commands and command UI associated with the specified Ad
d-in.
/ResetSettings Restores the IDE's default settings, optionally resets to
the specified VSSettings file.
/ResetSkipPkgs Clears all SkipLoading tags added to VSPackages.
/Run Compiles and runs the specified solution.
/RunExit Compiles and runs the specified solution then closes the IDE.
/SafeMode Launches the IDE in safe mode loading minimal windows.
/Upgrade Upgrades the project or the solution and all projects in it.
A backup of these files will be created as appropriate. Please
see Help on 'Visual Studio Conversion Wizard' for more
information on the backup process.

Proct-specific switches:

/debugexe Open the specified executable to be debugged. The
remainder of the command line is passed to this
executable as its arguments.
/useenv Use PATH, INCLUDE, LIBPATH, and LIB environment variables
instead of IDE paths for VC++ builds.

To attach the debugger from the command line, use:
VsJITDebugger.exe -p < pid >

10. 在C语言中 宏定义是什么

在C语言源程序中,允许用一个标识符来表示一个字符串,称为宏,宏定义是由源程序中的宏定义命令完成的,宏替换是由预处理程序自动完成的。宏定义是C提供的三种预处理功能的其中一种,这三种预处理包括:宏定义、文件包含、条件编译。

(10)编译宏扩展阅读:

宏(Macro),是一种批量处理的称谓。计算机科学里的宏是一种抽象,它根据一系列预定义的规则替换一定的文本模式。

计算机语言如C语言或汇编语言有简单的宏系统,由编译器或汇编器的预处理器实现。C语言的宏预处理器的工作只是简单的文本搜索和替换,使用附加的文本处理语言如M4,C程序员可以获得更精巧的宏。

热点内容
反编译游戏程序 发布:2024-11-16 02:21:56 浏览:453
androidapp调用app 发布:2024-11-16 02:20:15 浏览:668
超市管理系统sql 发布:2024-11-16 02:15:24 浏览:732
iphone百度云上传 发布:2024-11-16 01:59:04 浏览:419
公共场合ftp 发布:2024-11-16 01:28:20 浏览:227
福特悠享版有哪些配置 发布:2024-11-16 01:22:06 浏览:594
id加密卡 发布:2024-11-16 01:20:26 浏览:360
我的世界极致画质光影什么配置 发布:2024-11-16 01:15:13 浏览:495
子账号的密码是多少 发布:2024-11-16 01:12:41 浏览:819
反编译后不能打开工程 发布:2024-11-16 01:05:29 浏览:774