代码编程规范之逻辑判断疑问?
我想问一下各位大大,像这样的逻辑判断避免不了,可是又好像太繁琐,以代码编程规范
为参考,如何优化或者规避这样的现象呢?
回复内容:
我想问一下各位大大,像这样的逻辑判断避免不了,可是又好像太繁琐,以代码编程规范
为参考,如何优化或者规避这样的现象呢?
经验问题。单独来说if(!is_array)这段吧,这可能来自以下需求:
咱们啊有个数,然后想和另一个比较,另一个是什么呢,可以随便输入,但是肯定是大于5,小于7,大约等于8,小于等于10这种,你给做一下吧。
然后你就这么做了,没有错。
因为不懂开发的人会实事求是的描述他的需求,但是我认为开发人员应该有自己的理解,比如我会抽象为:
将数字A与期望的表达式B比对,并得到结果;其中,表达式B包含操作符与操作数两部分。即,表达式B应该符合正则表达式 /^([^\d]+)(\d+)$/
;其中$1是操作符,$2是操作数。且,操作符必须是 ,>=之一。
这样,代码将类似
<code>//$a 操作数A, $b, 表达式B,$c, 操作符, $n2 第二个操作数 if (! preg_match('/^\d+$/', $a)) { die('a无效'); } if (! preg_match('/^([^\d]+)(\d+)$/', $b, $_match)) { die("格式错误"); } $c = $_match[1][0]; $n2 = $_match[1][1]; $useableC = array('', '>='); if (! in_array($c, $useableC)) { die('无效的操作符'); } eval("\$t = $a $c $n2"); if ($t) echo 'Y'; echo echo 'N';</code>
很明显,这样你可以很容易的扩展到更多的操作符,以后想增加==,!=很方便。
以上是伪码,不建议使用正则表达式作为数字有效性验证的最终标准
写作能力很差,不知道你能明白我想表达的意思不,希望有帮助。

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











DMA in C refers to DirectMemoryAccess, a direct memory access technology, allowing hardware devices to directly transmit data to memory without CPU intervention. 1) DMA operation is highly dependent on hardware devices and drivers, and the implementation method varies from system to system. 2) Direct access to memory may bring security risks, and the correctness and security of the code must be ensured. 3) DMA can improve performance, but improper use may lead to degradation of system performance. Through practice and learning, we can master the skills of using DMA and maximize its effectiveness in scenarios such as high-speed data transmission and real-time signal processing.

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

The application of static analysis in C mainly includes discovering memory management problems, checking code logic errors, and improving code security. 1) Static analysis can identify problems such as memory leaks, double releases, and uninitialized pointers. 2) It can detect unused variables, dead code and logical contradictions. 3) Static analysis tools such as Coverity can detect buffer overflow, integer overflow and unsafe API calls to improve code security.

Using the chrono library in C can allow you to control time and time intervals more accurately. Let's explore the charm of this library. C's chrono library is part of the standard library, which provides a modern way to deal with time and time intervals. For programmers who have suffered from time.h and ctime, chrono is undoubtedly a boon. It not only improves the readability and maintainability of the code, but also provides higher accuracy and flexibility. Let's start with the basics. The chrono library mainly includes the following key components: std::chrono::system_clock: represents the system clock, used to obtain the current time. std::chron

C code optimization can be achieved through the following strategies: 1. Manually manage memory for optimization use; 2. Write code that complies with compiler optimization rules; 3. Select appropriate algorithms and data structures; 4. Use inline functions to reduce call overhead; 5. Apply template metaprogramming to optimize at compile time; 6. Avoid unnecessary copying, use moving semantics and reference parameters; 7. Use const correctly to help compiler optimization; 8. Select appropriate data structures, such as std::vector.

Handling high DPI display in C can be achieved through the following steps: 1) Understand DPI and scaling, use the operating system API to obtain DPI information and adjust the graphics output; 2) Handle cross-platform compatibility, use cross-platform graphics libraries such as SDL or Qt; 3) Perform performance optimization, improve performance through cache, hardware acceleration, and dynamic adjustment of the details level; 4) Solve common problems, such as blurred text and interface elements are too small, and solve by correctly applying DPI scaling.

ABI compatibility in C refers to whether binary code generated by different compilers or versions can be compatible without recompilation. 1. Function calling conventions, 2. Name modification, 3. Virtual function table layout, 4. Structure and class layout are the main aspects involved.

Measuring thread performance in C can use the timing tools, performance analysis tools, and custom timers in the standard library. 1. Use the library to measure execution time. 2. Use gprof for performance analysis. The steps include adding the -pg option during compilation, running the program to generate a gmon.out file, and generating a performance report. 3. Use Valgrind's Callgrind module to perform more detailed analysis. The steps include running the program to generate the callgrind.out file and viewing the results using kcachegrind. 4. Custom timers can flexibly measure the execution time of a specific code segment. These methods help to fully understand thread performance and optimize code.
