What is the function of static keyword in c language

angryTom
Release: 2020-03-05 13:11:11
Original
12246 people have browsed it

What is the function of static keyword in c language

What is the function of the static keyword in C language

In C, static mainly defines global static variables, defines local static variables, and defines static function.

Recommended learning: c language video tutorial

In daily use, static usually has two functions:

1. Modification Variable

■ Static global variable: Add the static modification before the global variable, and the variable becomes a static global variable. We know that all variables can be accessed in the entire project (defined in one file, and added with the extern keyword declaration when used in other files). After adding the static keyword, this variable can only be accessed within this file. . Therefore, here, the role of static is to limit the scope.

■ Static local variables: After the static modification is added to the local invariant, the variable becomes a static local variable. We know that local variables will be destroyed after leaving the defined function, and when modified with static, its scope will last until the end of the entire program. Therefore, the role of static here is to limit the life cycle.

2. Modified function

■ If you modify the function, the function becomes static function. The scope of the function is limited to this file, and Cannot be called by other files.

For more c languageprogramming tutorial, please pay attention to the PHP Chinese website!

The above is the detailed content of What is the function of static keyword in c language. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!