PHP object-oriented programming and other constant usage examples, sed usage examples_PHP tutorial

WBOY
Release: 2016-07-13 10:20:36
Original
921 people have browsed it

PHP object-oriented programming and other constant usage examples, sed usage examples

Class constants are a very important concept in PHP object-oriented programming. A firm grasp of class constants will help further improve the level of PHP object-oriented programming. This article describes the usage of class constants in PHP programming in the form of examples. The details are as follows:

Class constant: In the class, data that remains unchanged during the running cycle is saved.

Definition:

const 关键字
const 常量名 = 常量值
Copy after login

Examples are as follows:

class Student
{
public $stu_id;
public $stu_name;
public $stu_gender;
const GENDER_MALE= '男';
const GENDER_FEMALE = '女';
}
Copy after login

Class constants are not restricted by access qualification modifiers
Access method:
Class::Constant name

Examples are as follows:

class Student
{
public $stu_id;
public $stu_name;
public $stu_gender;
const GENDER_MALE= '男';
const GENDER_FEMALE = '女';
public function __construct($id,$name,$gender='')
{
$this->stu_id= $id;
$this->stu_name= $name;
$this->gender= ($gender == ' ')?self::GENDER_MALE : $gender;
}
}

Copy after login

Summary: The members that can be defined in a class are: constants, static properties, non-static properties, static methods, and non-static methods .

Note here:
$this represents the current object, so does it always represent the object of the class where $this belongs?
The answer is no! Because the value of $this does not depend on the class where $this is located, but depends on the execution object (execution environment) when the method where $this is located is called

The execution environment of the method, in which object the current method is executed, $this in the method represents which object.

What is object-oriented programming in php

Object-Oriented Programming (OOP) is based on creating software reusable code and has the ability to better simulate real-world environments, which makes it recognized as top-down programming. winner. It "encapsulates" functions into "objects" necessary for programming by adding extension statements to the program. The object-oriented programming language makes complex work clear and easy to write

In object-oriented programming, what problems will occur if final constants are not used?

Final constant means that it is not allowed to be modified, which means it has the same meaning as the constant in C language.

Final function means it is not allowed to be overridden after inheritance.

If the final flag is not used, it will not report an error even if it is modified, and the stability of the program will be affected.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/866656.htmlTechArticlePHP object-oriented programming examples of constant usage, sed usage examples class constants are very important in PHP object-oriented programming An important concept, a firm grasp of class constants will help further improve...
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!