您使用的最常见的方法/变量/类名称是什么?
您经常使用的最常见的方法/变量/类名称,可以清楚、准确地解释您的意图。您是否遵循任何模式来弄清楚这一点。
Most common method/variable/class names that you use often and that explain you intent clearly and precisely.Is there any pattern you follow to figure that out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
int i = 0;
我猜。
int i = 0;
I guess.
对象发送者,EventArgs e
object sender, EventArgs e
这不是常见的名称,而是我认为您需要的常见名称模式
,因此我尝试使变量具有某种含义
,但有时,在存在歧义的情况下,我可能会使用“单位”后缀。如果我正在处理两个现有的 API,一个在几秒内工作,一个在毫秒内工作,这确实有助于提醒我的眼睛单位
(是的,有使用原始原始类型的替代方法可以产生相同的效果)
It's not common names, but common patterns of names I think you need
So I try to make the variables mean something
But then on occasions, where there is scope for ambiguity I may use a "units" suffix. If I'm dealing with two existing APIs one that works in seconds and one that works in milliseconds it really helps my eyes to be reminded of the units
(Yes there are alternatives to using raw primitive types that may give the same effect)