The difference between define () and const in php is described in detail. In php, both define () and const () can define constants. So what is the difference between define () and const? many programmers do not understand this, next I will introduce some differences between define
In php, both define () and const () can define constants. So what is the difference between define () and const? many programmers do not understand this, I will introduce you
In php, both define () and const () can define constants. So what is the difference between
Label: style blog Io ar use for strong SP Div 1) # define is a pre-processing command. It is a simple replacement during compilation and pre-processing, and does not check the correctness. It does not mean that it is correct or not, possible errors are detected and reported only when the expanded source program is compiled. For example:# Define PI 3.1415926In the program: Area = pI * r will be replaced with
1.1. # define variant, that is, # ifndef, can prevent repeated references to header files# Ifdef and # define combinations are generally used in header files to prevent repeated references of multiple files to the same header file.In actual use, even if your header file is not referenced by multiple files, it is best to add it to increase program readability, portability, robustness, and so on.Its usage is
Today, we have compiled some # define usage to share with you!1. Simple define Definition#define MAXTIME 1000A simple maxtime is defined, it represents 1000, if it is written inside the programif (IThe compiler replaces the maxtime with 1000 before processing the code.Such a definition looks similar to a normal const definition, but it is also different because t
Define is a pre-processing command in C language. It is used for macro definition, which can improve the readability of the source code and provide convenience for programming.Pre-processing commands start with "#", for example, include commands # include and macro-defined commands # define. Usually put in front of the source file, which is called preprocessing.Preprocessing refers to the work done before c
A constant is an identifier (first name) of a simple value. As the name implies, the value cannot be changed during script execution (except for the so-called magic constants, they are not constants). Changshime is considered to be case sensitive. Usually, constant identifiers are always uppercase. You can use the Define () function to define constants. After PHP 5.3.0, you can use the Const keyword to
In PHP define () and const () can define constants, then the difference between define () and const exactly where, this many programmers do not understand, I would like to introduce to you some of this function usage ratio.
The difference between define () and const:
Define
Definition:
The # define Directive
You can use the # define directive to give a meaningful name to a constant in your program. The two forms of the syntax are:
Syntax
# Define identifier token-stringopt
# Define identifier [(identifieropt,..., identifieropt)] token-stringopt
Usage:
1.SimpleDefineDefinition
#
# Define usage
1.Simple define Definition
# Define maxtime1000
A simple maxtime is defined. It represents 1000. If you write
If (I
The compiler replaces maxtime with 1000 before processing this code.
This definition looks similar to a normal constant definition const, but it is also different, because the definition of defin
Const is used for the definition of class member constants. it cannot be modified after definition, and define is used to define global constants, so that we can access but cannot change it elsewhere, we will list the details below. note: define cannot be defined in... const is used for the definition of class member constants. it cannot be modified after definit
Usage and difference between typedef and # define
I. Usage of typedef
In C/C ++, typedef is often used to define an alias for an identifier and a keyword. It is part of the language compilation process, but it does not actually allocate memory space, such:
Typedef int;Typedef int array [10];Typedef (int *) pint;
Typedef can be enhancedProgramBut it also has some disadvantages such as "non-intuitive.
In general, we define a constant using # define, #define的本质是文本替换, for example, # define INT_PTR int*, when we use a int_ptr,int_ptr a, B, which is equivalent to an INT * A, A, a, b; That is, define a pointer variable A and integer variable B, which is a common scenario for #
1 NO parameter macro definitionThe macro name of the parameterless macro is not followed by a parameter.The general form of its definition is:#define Identifier stringWhere the "#" indicates that this is a preprocessing command. All that begin with "#" are pre-processing commands. "Define" defines the command for the macro. "Identifier" is the name of the macro defined. A "string" can be a constant, an expr
Note: Define cannot be defined in a class, and the const must be defined in a class, and the const must be accessed by the class name:: Variable name
1. Const is used for class member variable definition once defined and cannot change its value. Define defines global constants that can be accessed anywhere.2, define can not be defined in the class and Const.3. C
Original article address:
Http://blog.csdn.net/kindazrael/article/details/8108868
In C, Preprocessor is a powerful tool that makes your code easier to read and modify. With preprocessing code, you can redefine a part of the code to make your code more suitable for your style. Preprocessor is processed in advance before the code is compiled. The pre-processing code starts with a pound sign.1. About
#define
#defineDeclarations are mainly used to assign
#define宏定义在C系开发中可以说占有举足轻重的作用. The underlying framework does not have to say, in order to compile optimization and convenience, as well as cross-platform capabilities, macros are heavily used, it can be said that the bottom of development left define will be unable to move. When developing at a higher level, we put more emphasis on business logic and seem to have little use and reliance on macros.But the ben
Asynchronous modules define AMD and asynchronous modules amd
It is called Asynchronous Module Definition, and is defined by Asynchronous components (or modules. AMD is a mechanism in which components and their dependencies can be asynchronously loaded.Define Method
define(id?, dependencies?, factory);
Component ID
The component ID is the unique identifier of a component. In a script file that is one-to-one
I. Usage of typedef
In C/C ++, typedef is often used to define an alias for an identifier and a keyword. It is part of the language compilation process, but it does not actually allocate memory space, such:
Typedef int;Typedef int array [10];Typedef (int *) pint;
Typedef can be enhancedProgramBut it also has some disadvantages such as "non-intuitive.
Ii. # define usage
#
Difference between typedef and # define
1. typedef
Typedef is the meaning of the type definition, but itInstead of defining a new type, you can create an alias for an existing type., Similar to the meaning of the reference,References are aliases of variables or objects, while typedef defines aliases of types.. Typedef has two main functions:
1.1 simplify complex type declarations
Simplify complex type declarations, or give existing types an alias
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.