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

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

Apr 04, 2019 am 09:54 AM

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 *)
Copy after login

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

char * s3,s4;
Copy after login

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        
 }
Copy after login

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
Copy after login

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 ] ;
Copy after login

(2) Assign a new name to the structure type

typedef struct {           
int a;            
char b;        
} myType;
Copy after login

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 of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Usage of typedef struct in c language Usage of typedef struct in c language May 09, 2024 am 10:15 AM

typedef struct is used in C language to create structure type aliases to simplify the use of structures. It aliases a new data type to an existing structure by specifying the structure alias. Benefits include enhanced readability, code reuse, and type checking. Note: The structure must be defined before using an alias. The alias must be unique in the program and only valid within the scope in which it is declared.

What is the usage of typedef What is the usage of typedef Sep 04, 2023 pm 01:20 PM

The use of typedef is to create new aliases for existing data types. Using typedefs can increase the readability and maintainability of your code, especially when dealing with complex data types. For simple data types, such as integers, floating point numbers, or characters, the benefits of using aliases are not obvious. However, for complex data types such as pointers, structures, arrays, and functions, the advantages of using aliases are obvious. A typedef cannot be used before a variable or function definition and is usually created at the top of a program file or after a structure definition.

Understanding Memory Management of C++ Function Pointers: Avoiding Pointer Traps Understanding Memory Management of C++ Function Pointers: Avoiding Pointer Traps Apr 29, 2024 pm 09:03 PM

When using function pointers in C++, memory management must be carefully considered to avoid pitfalls. These traps include dangling pointers (pointing to functions outside their scope) and wild pointers (function pointers that are never initialized or set to nullptr). To avoid these pitfalls, follow these best practices: always initialize function pointers, manage memory carefully, and use smart pointers. This way you can use function pointers safely and avoid falling into pointer traps.

Detailed explanation of Linux kernel timer and delay work driver development Detailed explanation of Linux kernel timer and delay work driver development Feb 13, 2024 am 11:57 AM

Linux kernel timers and delay tasks are two commonly used mechanisms to implement scheduled tasks and delayed execution tasks. They allow the driver to execute specific functions at the appropriate time point to adapt to the needs and characteristics of the hardware device. But how do you properly use Linux kernel timers to work with delays? This article will introduce the basic knowledge and skills of Linux kernel timer and delay work driver development from both theoretical and practical aspects, as well as some common problems and solutions. The timer on the kernel timer software ultimately relies on the hardware clock. Simply put, the kernel will detect whether each timer registered to the kernel has expired after the clock interrupt occurs. If it expires, it will call back the corresponding registration function. Do this as an interrupt to the bottom half. Reality

defineHow to define multi-line macros defineHow to define multi-line macros Oct 11, 2023 pm 01:24 PM

define defines a multi-line macro by using `\` to divide `do { \ printf("%d\n", x); \ } while (0)` into multiple lines for definition. In a macro definition, the backslash `\` must be the last character of the macro definition and cannot be followed by spaces or comments. When using `\` for line continuation, be careful to keep the code readable and make sure there is a `\` at the end of each line.

Explore the importance and role of define function in PHP Explore the importance and role of define function in PHP Mar 19, 2024 pm 12:12 PM

The importance and role of the define function in PHP 1. Basic introduction to the define function In PHP, the define function is a key function used to define constants. Constants will not change their values ​​during the running of the program. Constants defined using the define function can be accessed throughout the script and are global. 2. The syntax of define function The basic syntax of define function is as follows: define("constant name","constant value&qu

How to write simple fireworks code in C language How to write simple fireworks code in C language Apr 13, 2024 pm 09:18 PM

To write a simple firework code in C, you need to follow these steps: Include header files and libraries. Define constants and macros. Create a particle data structure. Declare global variables. Initialize the fireworks particles in the main() function. Update the particle's position and velocity in the game loop and draw them. Check for and destroy particles that have reached their end of life.

The difference between typedef struct and struct in c++ The difference between typedef struct and struct in c++ May 01, 2024 am 11:36 AM

The difference between typedef struct and struct: typedef struct creates an alias of a structure type, while struct defines a new structure type. The alias created by typedef struct can be used after it is declared, while the structure defined by struct can be used after it is defined. Neither typedef struct nor struct creates additional storage space.