Increment/Decrement Operators can increase costs

CostSoftware AgilityCode Readability

Increment/Decrement Operators can increase costs

This code insight searches all the artifacts having increment/decrement operators.

Increment and decrement operators

1) cannot be used in an arithmetic operation.

Ex of violation :
$id = –$i – $x;

2) must be bracketed when used in string concatenation.

Ex of violation :
$id = $id.’_’.$i++;   
should be $id = $id.’_’.($i++);

3) should be used where possible.

Ex of violation :
$var = (1 – $var);
should be $var–;

5362

Why you should care

For performance reasons, it is preferable to avoid incrementer/decrement operators.
This could be time and memory consuming.  Try to reduce the number of artifacts having Increment/decrement operators.

Business Impacts

It is recommended to avoid these in order to ensure the code is more readable and cost effective.

Cost

CAST recommendations

References

5362

About CAST and Highlight’s Code Insights

Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.

See featuresHow it works

c