51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#多用途
函数的功能要单一,不要设计多用途的函数
函数的功能要单一,不要设计多用途的函数。 1#include<iostream>2#include<time.h>34/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/5...
代码星球
·
2021-02-08
函数
功能
单一
不要
设计
不要有多用途的复合表达式
例如:d=(a=b+c)+r;该表达式既求a值又求d值。应该拆分为两个独立的语句:a=b+c;d=a+r; #include<iostream>/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinput...
代码星球
·
2021-02-08
要有
多用途
复合
表达式
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他