编码标准和生产线长度 [已关闭]
2022-08-30 20:34:39
我见过的每个编码标准对一行中的字符数都有推荐或绝对限制。在此限制内有各种工作方式,但我还没有看到这方面的任何具体指导。
显然,如果可能的话,不要写过长的行。
但是,如果这不切实际呢?长队应该如何处理?
以下是几个例子
if ($Stmt = $Mysqli->prepare("SELECT color, pattern, size,
manufacturer, mfgSku, storeLocation,
aisle, status
FROM tblItems WHERE ourSku = ?")) {
或
$flavors = array ('chocolate', 'strawberry', 'vanilla', 'cookie dough',
'chocolate chip', 'mint chocolate chip', 'rocky road',
'peach', 'fudge brownie', 'coffee', 'mocha chip');
或
$Stmt->bind_result( $this->_firstName,
$this->_lastName,
$this->_BillToAddress->address1,
$this->_BillToAddress->address2,
$this->_BillToAddress->city,
$this->_BillToAddress->state,
$this->_BillToAddress->zip,
$this->_BillToAddress->country,
$this->_email,
$this->_status,
$this->_primaryPhone,
$this->_mobilePhone );
在上述每个示例中,冗长代码的缩进都是不同的。有没有更好或更“标准”的方法可以做到这一点?是否应始终以相同的方式缩进多余的行。或者这样可以吗?