Speaking of object-oriented, let’s first review the previous programming ideas. The so-called programming ideas are the process of logically reasoning about programs based on the essential principles of knowledge. Programming ideas focus on first clarifying what is to be done. When leaving the code, you must be able to understand how to do this thing. Instead of memorizing the code again. According to what you want to do, confirm various known conditions. If there are no conditions, you must create conditions yourself. That is: know the conditions, know the results, and seek the process. In actual programs, we often have to do a lot of preparation work to create satisfying conditions. For example, to output a piece of data in MySQL, we need to prepare paging calculations to know where to output it, often in a program. One function or one process cannot meet the needs of the entire function. It requires the cooperation of several processes to complete, for example, what to do when the web page is opened, what to do when the form is submitted, what to do when it is not submitted, what to do when the database cannot be connected, and what to do when it is connected. When no form is submitted (when $_POST is empty), we display the form. When data is submitted, we connect to the database, organize the SQL statements, and write them into the database. Then give the user a prompt page. To sum up, when we think about the entire program, we will think about what the program needs to do when the program runs here, and how to do it to meet the needs of the next process. Only the combination of these processes can meet the needs of the entire function. We call this way of thinking process-oriented. To sum up, the process-oriented thinking model has a common feature: when to do something, how to do it, every step of the process. This is process-oriented.
In fact, when we write code, more than 90% of it is process-oriented, while the opposite object-oriented is just the name of a way of thinking. Many times we also use the object-oriented way of thinking but we just don’t know it. The following The code is a simple example:
<span $file</span> = "test.txt"<span ;//指定打开的文件 </span><span $fp</span> = <span fopen</span>(<span $file</span>, "r"<span );//打开文件 </span><span $data</span> = <span fread</span>(<span $fp</span>, 1024<span );//读取数据赋值 </span><span fclose</span>(<span $fp</span><span );//关闭文件 </span><span echo</span> <span $data</span>;//输出
A piece of code corresponds to a process
Many people should be thinking this way when we read the database. //Connect to the database //Query the database //Display the results,
If it is identity verification. There is one more process. //Connect to the database//Query the database//Compare the username and password//Display the results. This comment is actually a description of the idea. When we become proficient in writing code to a certain level, there is no need to think about it line by line. We often think of a process, which is just a few lines of code, but the actual function of the code must be consistent with the thinking process.
Still the above code
<span $fp</span> = <span fopen</span>(<span $file</span>, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, 1024<span ); </span><span fclose</span>(<span $fp</span><span ); </span><span //整体注释就是:</span><span 读取“文件”的“内容”<br /><br /></span> //如果我换成另一个同样功能函数呢$file = "test.txt";
$data = file_get_contents($file);
<span </span>
This way of writing is more in line with what we just described: reading the file content. Here, when we think about $file, we think of it as a file.
Another example: we can understand the graphics processing process as: creating an image, writing into the image, drawing lines into the image, outputting the image, and treating this amount of resources as the image itself.
The so-called object-oriented is a description of the thinking mode. In this thinking mode, we imagine each thing to be processed as an entity, reading files, processing data and writing files. . Create an image, draw on an image, write on an image, output an image. Although from the nature of the code, they are still various quantities, you just need to be aware of this subconsciously. When thinking and describing, if you think like this one by one. It will bring certain difficulties to thinking. And use the above way of thinking and describing. It’s much simpler. This way of thinking is object-oriented. A sentence similar to the process-oriented one above is: when and who do what.
Process-oriented is: when, what to do, how to do it
Object-oriented is: when, what, do. When object-oriented, there is one less thing about how to do it. That’s because the premise of object-oriented is that you already know how to do it. This is why we always learn process-oriented first. If we don’t know how to do something, we can’t talk about it. What thinking mode. In fact, the image processing function is developed based on the object-oriented thinking model. From the beginning to the end, it is about what to do with this picture. The thinking model is not limited to the writing method. It does not mean that writing this way is object-oriented and writing that way is process-oriented. After we have mastered the implementation methods of various functions. We tend to reuse code through encapsulation. So how can the packaging be more reasonable? At this time, look at the way of thinking, as I said before. The description of the idea must be consistent with the code. Then encapsulation is no longer random encapsulation. When using encapsulated functions and classes, it is best to use them in the same writing format as described by thinking. . and description of ideas. . Match as closely as possible.
<span function</span> read(<span $file</span><span ) { } </span><span //</span><span 读取文件</span> <span $data</span> = read(<span $file</span>);
符合度百分之百,当然前提你得知道怎么封装这样一个函数,在此由于$file是文件名 将它视为文件有点牵强,但我们可以理解为文件的路径path,所以 最好使用类去封装。
用我们日常生活的常识来理解对象的话 对象时一个个实体,那么它对应的就应该有一些特性,比如说文件名是什么,路径是多少,文件大小多少,比如说我们人 有身高体重名字性别,但是,在我们平时的制作手法里面。我们要知道一个文件大小。就必须用 filesize 函数去取得。这就像我问你身高是多少,你每次都要重新量一下。 这和我们常识中的对象,存在一定的差距,使得我们在思考描述代码的时候。代码的符合度不够。 但是类可以暂时记住这些特征值,我们称之为对象的属性,属性,一定是一个准确的值,而过程在类里面称为方法,类里面 可以声明一些特殊的变量,这些变量外部不能直接访问到,这些就是类的属性,要想访问一个类的属性和方法一样使用-> 但是不需要写$,假如我们有一个file类 有一个属性
<span $file</span> = <span new</span> <span file</span><span (); </span><span echo</span> <span $file</span>->size;
用这种方式来访问一个对象变量的属性 怎么定义它 我们先不急 慢慢道来 ,我们先回到思路上,今天我们封装一个文件读写类 我们的代码在需要文件读写的时候我们这样思考:读取文件 处理数据 写入文件 ,这个思路正是文件型计数器的思路。
那么,我们最好的写法是
<span $data</span> = read(<span $file</span><span ); </span><span $data</span> +=1<span ; write(</span><span $file</span>, <span $data</span>);
<span function</span> read(<span $file</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, <span filesize</span>(<span $file</span><span )); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $data</span><span ; } </span><span function</span> write(<span $file</span>, <span $data</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "w"<span ); </span><span $rs</span> = <span fwrite</span>(<span $fp</span>, <span $data</span><span ); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $rs</span><span ; }</span>
这两个函数。都是同属于文件操作的。我们把它封装成为类
<span class</span><span fileclass { </span><span function</span> read(<span $file</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, <span filesize</span>(<span $file</span><span )); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $data</span><span ; } </span><span function</span> write(<span $file</span>, <span $data</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "w"<span ); </span><span $rs</span> = <span fwrite</span>(<span $fp</span>, <span $data</span><span ); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $rs</span><span ; } }<br /><br /></span>
调用这个类的时候。代码是这么写的。
<span $fc</span> = <span new</span><span fileclass();<br />//读取文件 </span><span $data</span> = <span $fc</span>->read(<span $file</span><span ); </span><span $data</span> +=1<span ;<br />//写入文件 </span><span $fc</span>->write(<span $file</span>, <span $data</span>);然而这里有个和思路不符的地方,上下的两个$file可以是两个不同的文件,也就是说我可以从文件A读取内容写入到文件B中,但是这样一来就是两个文件,就是两个对象,这个和思路不符,在这个代码中,我们没办法准确的描述出。哪一个量。可以视为这个文件。 尽管使用了类从思维上还是面向的过程,之前说过 作为对象应该有自己的属性,对象 应该知道自己的属性,我们希望 用一个实例化的量 来表示这个对象,一个对象 一旦出现就知道自己的属性,就如我们都知道的姓名和性别,要做到这几点,我们需要修改类的结构,一开始就知道。。就是说。一开始就得知道文件名。而且一开始就要读取文件大小。 毕竟,没有这些过程 不可能凭空得到。在类里面。构造函数可以帮我们做到这一点。构造函数。会在类实例化的时候立即执行。我们可以在构造函数里读取文件的大小,要读取文件大小,同样需要知道文件名。 这就需要一个条件。可以通过函数参数传入。
<span public</span> <span function</span> __construct(<span $file</span><span ) { </span><span $size</span> = <span filesize</span>(<span $file</span><span ); }</span>我们都知道,自定义函数内部变量和外部变量。不是同一个世界的。 也就是说。在这里给 $size 赋值。属性 size 是得不到的。 在这里 在类的方法里面,要想访问类的属性和其他方法。需要用关键字 $this->
<?<span php </span><span class</span><span fileclass { </span><span public</span> <span $size</span> = 0<span ; </span><span public</span> <span $name</span> = ''<span ; </span><span public</span> <span function</span> __construct(<span $file</span><span ) { </span><span $size</span> = <span filesize</span>(<span $file</span><span ); </span><span $this</span>->size = <span $size</span><span ; </span><span $this</span>->name = <span $file</span><span ; } </span><span function</span> read(<span $file</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, <span filesize</span>(<span $file</span><span )); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $data</span><span ; } </span><span function</span> write(<span $file</span>, <span $data</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $file</span>, "w"<span ); </span><span $rs</span> = <span fwrite</span>(<span $fp</span>, <span $data</span><span ); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $rs</span><span ; } } </span><span $fc</span> = <span new</span> fileclass("test.txt"<span ); </span><span echo</span> "文件名:" . <span $fc</span>-><span name; </span><span echo</span> "文件大小:" . <span $fc</span>-><span size; </span>?>
现在回到read方法 既然他已经有属性 知道自己名字和大小了 那在这里就不用再传文件名进去了,
<span function</span><span read() { </span><span $fp</span> = <span fopen</span>(<span $this</span>->name, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, <span filesize</span>(<span $this</span>-><span size)); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $data</span><span ; } </span>同样的。写入的时候。也不需要再通知文件名了。
<span class</span><span fileclass { </span><span public</span> <span $size</span> = 0<span ; </span><span public</span> <span $name</span> = ''<span ; </span><span public</span> <span function</span><span __construct($file) { </span><span $size</span> = <span filesize</span>(<span $file</span><span ); </span><span $this</span>->size = <span $size</span><span ; </span><span $this</span>->name = <span $file</span><span ; } </span><span function</span><span read() { </span><span $fp</span> = <span fopen</span>(<span $this</span>->name, "r"<span ); </span><span $data</span> = <span fread</span>(<span $fp</span>, <span filesize</span>(<span $this</span>->name<span )); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $data</span><span ; } </span><span function</span> write(<span $data</span><span ) { </span><span $fp</span> = <span fopen</span>(<span $this</span>->name, "w"<span ); </span><span $rs</span> = <span fwrite</span>(<span $fp</span>, <span $data</span><span ); </span><span fclose</span>(<span $fp</span><span ); </span><span return</span> <span $rs</span><span ; } }</span>现在,整个类就变成了这个样子。 回到刚才的计数器代码。
<span $fc</span> = <span new</span> fileclass("test.txt"<span ); //读取文件 </span><span $data</span> = <span $fc</span>-><span read(); </span><span $data</span> +=1<span ; </span><span echo</span> <span $data</span><span ; //写入文件 </span><span $fc</span>->write(<span $data</span>);由于读取是一个过程,也就是一个方法。从哪读取的? $fc $fc 此时,可以完全的理解为。就是文件本身了。 总结下:面向对象这种思维方式。讲究的是:什么时候,什么东西,做什么 。为了能让代码书写的时候,更符合这种描述方式,我们需要把过程封装起来。而类。只不过是为了能更准确的符合这种思考描述方式而做的准备性封装,不是说用类就是在用 面向对象 编程了。一个类写出来以后。如果在使用的过程中。不符合面向对象的思维方式。。那也只是普通的类,面向对象思维方式。。一定要有准确的对象。。可以把某个量。视为一个实体的东西。也就是“对象” 。归根到底其实是先有思路才有类的。

Vue.js与ASP.NET的结合,实现Web应用的性能优化和扩展的技巧和建议随着Web应用的快速发展,性能优化成为开发者不可或缺的重要任务。Vue.js作为一款流行的前端框架,与ASP.NET的结合可以帮助我们实现更好的性能优化和扩展。本文将会介绍一些技巧和建议,并提供一些代码示例。一、减少HTTP请求HTTP请求的数量直接影响着Web应用的加载速度。通过

译者|陈峻审校|重楼上个世纪90年代,当人们提起软件编程时,通常意味着选择一个编辑器,将代码检入CVS或SVN代码库,然后将代码编译成可执行文件。与之对应的Eclipse和VisualStudio等集成开发环境(IDE)可以将编程、开发、文档、构建、测试、部署等步骤纳入到一个完整的软件开发生命周期(SDLC)中,从而提高了开发人员的工作效率。近年来,流行的云计算和DevSecOps自动化工具提升了开发者的综合能力,使得更多的企业能够更加轻松地开发、部署和维护软件应用。如今,生成式AI作为下一代开

如何在ASP.NET程序中正确使用和优化MySQL连接池?引言:MySQL是一种广泛使用的数据库管理系统,它具有高性能、可靠性和易用性的特点。在ASP.NET开发中,使用MySQL数据库进行数据存储是常见的需求。为了提高数据库连接的效率和性能,我们需要正确地使用和优化MySQL连接池。本文将介绍在ASP.NET程序中如何正确使用和优化MySQL连接池的方法。

如何在ASP.NET程序中重连MySQL连接?在ASP.NET开发中,使用MySQL数据库是非常常见的。然而,由于网络或数据库服务器的原因,有时会导致数据库连接中断或超时。在这种情况下,为了保证程序的稳定性和可靠性,我们需要在连接断开后重新建立连接。本文将介绍如何在ASP.NET程序中实现重连MySQL连接的方法。引用必要的命名空间首先,在代码文件的头部引用

Vue.js与ASP.NET的结合,实现企业级应用的开发和部署在当今快速发展的互联网技术领域,企业级应用的开发和部署变得越来越重要。Vue.js和ASP.NET是两个在前端和后端开发中广泛使用的技术,将它们结合起来可以为企业级应用的开发和部署带来诸多优势。本文将通过代码示例介绍如何使用Vue.js和ASP.NET进行企业级应用的开发和部署。首先,我们需要安装

如何在ASP.NET程序中正确配置和使用MySQL连接池?随着互联网的发展和数据量的增大,对数据库的访问和连接需求也在不断增加。为了提高数据库的性能和稳定性,连接池成为了一个必不可少的技术。本文主要介绍如何在ASP.NET程序中正确配置和使用MySQL连接池,以提高数据库的效率和响应速度。一、连接池的概念和作用连接池是一种重复使用数据库连接的技术,在程序初始

在Linux上使用VisualStudio进行ASP.NET开发的推荐配置概述:随着开源软件的发展和Linux操作系统的普及,越来越多的开发者开始在Linux上进行ASP.NET开发。而作为一款功能强大的开发工具,VisualStudio在Windows平台上一直占据着主导地位。本文将介绍如何在Linux上配置VisualStudio来进行ASP.NE

ASP.NET中的内置对象有“Request”、“Response”、“Session”、“Server”、“Application”、 “HttpContext”、“Cache”、“Trace”、“Cookie”和“Server.MapPath”:1、Request,表示客户端发出的HTTP请求;2、Response:表示Web服务器返回给客户端的HTTP响应等等。


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
