


→static: static
Usage: It is a modifier used to modify members (member variables, member function)
class Person { String country = "cn"; }
/*Each instantiation Person object, each object has a country
in the heap memory. After adding static, there is only one static country in the memory that can be directly called by other objects, which can save memory space.
When a member is statically modified, in addition to being called by the object, it can also be called directly by the class name. */
Special content is stored with objects
For example, in the person class, every Chinese person has his own name, and the nationality is the same Chinese, so contry can be defined as static and name Need not.
→static characteristics
1. Loading as the class is loaded
That is to say: static will disappear as the class disappears, indicating his Life cycleThe longest
2. Priority exists before the object
3. Shared by all objects
4. Can be called directly by the class name
→The difference between int age (member variable) instance variable and static int age (static member variable) class variable
1. Storage purpose
The instance variable is Exists in the heap memory as the object is created
Class variables exist in the method area as the class is loaded
2. Life cycle
Instance variables follow the object Disappear with the disappearance of
Class variables have the longest life cycle and disappear with the disappearance of the class
→Static useNotes
1. Static Methods can only access static members
2. This cannot be defined in static methods, and the super keyword
Because static precedes the existence of objects, this cannot appear in static methods
3. The main function is static
→The advantages and disadvantages of static
Benefits: Store the object’s data in a separate space, saving space, and there is no need to store it in each object A copy
can be called directly by the class name (Person.country)
Disadvantages: The life cycle is too long.
Access is limited. (Only static can be accessed)
→When to use static?
We need to start from two aspects
Because the content of static modification includes member variables and Member methods(function)
When to define static variables ( class variables)?
When shared data appears in the object, the data is modified statically
The unique data in the object must be defined to be non-static and exist in the heap memory.
When should we define static functions?
When the function does not access non-static data (object-specific data), the function can be defined as static.
→Static application
Every application has common functions
These functions can be extracted and independently packaged
for reuse.
Define all member methods as static and call them directly with the class name.
There will be a default constructor in a class. The permissions of this constructor are consistent with the class to which it belongs.
Static code block
Format:
static
{
Execution statements in static code blocks;
}
//Features: As the class is loaded And execution is only executed once. Used to initialize classes.
The following example:
class StaticCode { static { System,out.println("a"); } }
Loading sequence static code block-->Construction code block-->Constructor function
Object initialization process
Person p = new Person("zhangsan",20);
1. Because new uses Person.class. So the Person.class file will be found first and loaded into memory.
2. Execute the static code block (static code block) in the class. If there is one, initialize the Person.class class.
3. Open up space in the heap memory. Assign the memory address
4. Create the object’s uniqueproperties in the heap memory and perform default initialization
5. Initialize the properties for display
6. Initialize the object with the construction code block
7. Initialize the object with the corresponding constructor
8. Pay the memory address to the p variable in the stack memory
The above is the detailed content of Detailed explanation of the characteristics and usage of the static keyword in PHP. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!
