search
HomeCommon ProblemWhat is the difference between typedef and define in C language?

The difference between typedef and define is: define is a preprocessing editor, and the definable macro has the possibility of being replaced, while typedef is processed by the editor, and follows the scope rules, and can be used as a definition type alias

#define is a C instruction, which is also an alias for defining various data types similar to typedef. However, there are still differences between them. Next, I will introduce the differences between them in detail in the article. It has a certain reference function and I hope it will be helpful to everyone.

What is the difference between typedef and define in C language?

[Recommended course: C Language Tutorial]

1. Preprocessor VS compiler

#define is determined by the preprocessor Handled by the processor, it copies and pastes the #define value from the point of definition to the point of use. Typedefs are handled by the compiler and are the actual definitions of new types. By the time control reaches the compiler, all #defines will have been replaced.

The impact of the difference

(1) typedef should end with a semicolon but #define should not end with a semicolon

(2) There may be side effects of substitution in the #define, for example:

   typedef char * string_t;         
   #define string_d char *        
   string_t s1,s2; // s1和s2都是char *类型        
   string_d s3,s4; // s3是char *但是s4的类型是char(而不是char *)

The problem in the second declaration is because the preprocessor will replace it with

char * s3,s4;

which means s3 is of type char* , but s4 will be of type char. If you want all variables to be pointer types, all variables must specify *

(3) typedef follows the scope rules. That is, if a new type is defined in a scope (within a function), the new type name will be displayed only if the scope exists. But when the preprocessor encounters a #define, it replaces all occurrences (no scoping rules after that). For example:

 int main (){            
 { 
 //新范围开始              
 typedef int myInt_t;                 
 #define myInt_d int                
 myInt_t a;  // a的类型为int                
 myInt_d b;  // b的类型为int            
 } //新范围结束           
 myInt_t c; //错误,输入myInt_t未找到            
 myInt_d d; //d的类型为int        
 }

2, macro VS type alias

#define can also be used to define macros, but typedef can only be used to provide a new name for an existing type (it New types cannot be created). Similarly, #define can be used to define the variable

#define N 10

which will not actually define N, but will replace N with 10 throughout the code. So it can be used for named constants. Typedef can only provide new names for defined types

3. Use typedef as a type alias

Some type definitions can only be defined using typedef and cannot be used #define definition. Example:

(1) Assign a new name to the integer array of size 10

       typedef int arr [ 10 ] ;

(2) Assign a new name to the structure type

typedef struct {           
int a;            
char b;        
} myType;

Summary: The above is this This is the entire content of this article, I hope it will be helpful to everyone.

The above is the detailed content of What is the difference between typedef and define in C language?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
typedef的用法是什么typedef的用法是什么Sep 04, 2023 pm 01:20 PM

typedef的用法是为已经存在的数据类型创建新的别名。使用typedef可以增加代码的可读性和可维护性,特别是在处理复杂的数据类型时。对于简单的数据类型,如整数、浮点数或字符,使用别名的好处并不明显。然而,对于指针、结构体、数组和函数等复杂的数据类型,使用别名的优势就显而易见了。typedef不能用于变量或函数定义之前,通常在程序文件的顶部或结构体定义之后创建。

Linux内核定时器与延迟工作驱动开发详解Linux内核定时器与延迟工作驱动开发详解Feb 13, 2024 am 11:57 AM

Linux内核定时器与延迟工作是两种常用的实现定时任务和延后执行任务的机制,它们可以让驱动程序在合适的时间点执行特定的函数,以适应硬件设备的需求和特性。但是,如何正确地使用Linux内核定时器与延迟工作呢?本文将从理论和实践两方面,介绍Linux内核定时器与延迟工作驱动开发的基本知识和技巧,以及一些常见的问题和解决方法。内核定时器软件上的定时器最终要依靠硬件时钟来实现,简单的说,内核会在时钟中断发生后检测各个注册到内核的定时器是否到期,如果到期,就回调相应的注册函数,将其作为中断底半部来执行。实

c语言简单烟花代码怎么写c语言简单烟花代码怎么写Apr 13, 2024 pm 09:18 PM

要编写一个简单的 C 语言烟花代码,需要遵循以下步骤:包含头文件和库。定义常量和宏。创建粒子数据结构。声明全局变量。在 main() 函数中初始化烟花粒子。在游戏循环中更新粒子的位置和速度,并绘制它们。检查和销毁已达到寿命的粒子。

使用 gcc (mingw32) 编译带有静态库的 DLL使用 gcc (mingw32) 编译带有静态库的 DLLFeb 09, 2024 am 10:00 AM

我有一个由外部工具(即cgo)生成的静态库,我们将其称为libsecondary.a。我想生成一个动态库,同时包含“libsecondary.a”作为依赖项,我在libsecondary.h中导出一个名为onprocessinit()的函数,并在dll_process_attach事件上调用它。我尝试生成共享库,但似乎无法使用x86_64-w64-mingw32-共享-l。-lsecondary-static-libgcc-static-libstdc++-static.\d

深入了解C++和C语言的异同深入了解C++和C语言的异同Mar 26, 2024 am 09:36 AM

C++和C语言是两种流行的编程语言,它们在很多方面都相似,但也有许多显著的差异。本文将深入探讨C++和C语言的异同点,并通过具体的代码示例来说明它们之间的差异。一、基本语法和结构差异1.1数据类型定义在C语言中,定义变量时需要先声明数据类型,例如:intnum;而在C++中,可以在定义变量的同时进行初始化,例如:intnum=10;1.2函数定义

从 Rust 到 Go 的回调函数从 Rust 到 Go 的回调函数Feb 05, 2024 pm 11:03 PM

我正在尝试创建从go调用rust函数的可能性,然后所述rust函数将函数回调到go。我使用cgo作为go和rust之间的ffi接口。以下是我的go代码(src/main.go):packagemainimport("c""fmt""unsafe")/*#cgocflags:-i./../lib#cgoldflags:-l./../bin-lgo_move-wl,-rpath=./bin#include"m

Linux 下的信号机制:如何使用信号进行进程间通信和控制Linux 下的信号机制:如何使用信号进行进程间通信和控制Feb 12, 2024 pm 12:40 PM

信号是Linux系统中一种常用的进程间通信和控制的方法,它可以让一个进程向另一个进程发送一个简单的消息,通知它发生了某种事件或者状态。信号的作用是提高系统的响应性和灵活性,以应对一些异常或者紧急的情况。在Linux系统中,有很多种信号,如SIGINT、SIGTERM、SIGKILL等,它们各有各的含义和作用,适用于不同的场景和需求。但是,你真的了解Linux下的信号机制吗?你知道如何在Linux下使用信号进行进程间通信和控制吗?你知道如何在Linux下处理和忽略信号吗?本文将为你详细介绍Linu

C++ 函数指针的应用场景有哪些?C++ 函数指针的应用场景有哪些?Apr 12, 2024 am 09:51 AM

函数指针应用于以下场景:回调函数:允许在函数调用完成后执行另一个函数。多态性:根据对象类型动态调用不同方法。数据结构存储:将函数存储在数据结构中,以便在运行时调用。优化性能、代码重用、测试和模拟等其他场景。

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.