【讨论】开始有点烦面向对象了,不知道你们如何看
【讨论】开始有点烦面向对象了,不知道你们怎么看?
记得最早接触面向对象是java
后来做php了,面向对象的特性 继承 封装 多态。
1.继承,继承多了 你都不知道哪里来的对象(当然这是设计者的问题,可是貌似大多数程序员的代码写的都不是很好,特别是业务复杂过后)。
网站数据源很多,有的是cache(这里特指内存的) 有的是文件 有的是数据库,出错了,都不知道哪里来的数据。一个个去排除。封装直接挡道了。
2.封装,本来是为了保证上层不用管下层,同时数据被封起来对外只提供方法,不会被外部修改。可是一般公司分工不是有人专门写 数据源层 逻辑层 这么分工的吧。而是基本按照业务分工。谁也不敢说我的数据访问层就没问题,谁也不敢说 我的某个类不出问题。至于数据的封装在web方面真的意义不大。
3.多态。php不支持,只有方法重写。
另外php对象的调用要多次查hash表,性能不高。其实php的类使用hash表来实现的,说白了和array比他反而是在array上面的hash表上封装。不如用array。
对于面向对象的应用在php,只觉得用在例如生成缩略图 数据库的操作封装 图片的操作封装 这些地方用我觉得倒是十分合适。
欢迎讨论。
------解决方案--------------------
面向对象,是一种思维方式
面向对象编程,是一种方法
软件工程中有:自顶向下分析,自底向上编程。描述的是面向过程的编程方法,他需要对所涉及的每个细节都深入了解。
面向对象的编程方法是 自顶向下分析,自顶向下编程。他不需要一开始就了解细节,而是在过程中逐渐展开。暂时不了解的环节放个空对象就可以了
面向对象给编程带来很多方便,也必然带来更多的系统开销
这就是为什么 windows 操作系统从开始的 10M 变成现在的300、400M,功能增加了不少,而速度却越来越蜗牛
------解决方案--------------------
楼上说的在点。
传统编程是数据结构+函数,有了面向对象思想以后,它就变成了数据结构和操作该数据结构的方法, 也就是更明确了功能的划分。
C语言有指针甚至是函数指针,可以直接操作指定地址的内存,用C实现面向对象中的派生,多态之类的非常简单,但对于绝大多数语言来说,它们并没有那么灵活的特性,所以都提供了类这些语言特性专门支持面向对象,不要怪它们。
另外,面向对象注重内聚,所以也意味着不同对象间的通信非常依赖于明确的消息,所以开发时接口的设计变得更加需要思考设计。

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics



JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

Multithreading in the language can greatly improve program efficiency. There are four main ways to implement multithreading in C language: Create independent processes: Create multiple independently running processes, each process has its own memory space. Pseudo-multithreading: Create multiple execution streams in a process that share the same memory space and execute alternately. Multi-threaded library: Use multi-threaded libraries such as pthreads to create and manage threads, providing rich thread operation functions. Coroutine: A lightweight multi-threaded implementation that divides tasks into small subtasks and executes them in turn.

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

Solving the problem of slow Photoshop startup requires a multi-pronged approach, including: upgrading hardware (memory, solid-state drive, CPU); uninstalling outdated or incompatible plug-ins; cleaning up system garbage and excessive background programs regularly; closing irrelevant programs with caution; avoiding opening a large number of files during startup.

How to implement Windows-like in front-end development...

Multithreading is an important technology in computer programming and is used to improve program execution efficiency. In the C language, there are many ways to implement multithreading, including thread libraries, POSIX threads, and Windows API.
