您使用的最常见的方法/变量/类名称是什么?

发布于 2024-08-05 23:51:08 字数 59 浏览 1 评论 0原文

您经常使用的最常见的方法/变量/类名称,可以清楚、准确地解释您的意图。您是否遵循任何模式来弄清楚这一点。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最舍不得你 2024-08-12 23:51:08

int i = 0;

我猜。

int i = 0;

I guess.

兔姬 2024-08-12 23:51:08

对象发送者,EventArgs e

object sender, EventArgs e

贩梦商人 2024-08-12 23:51:08

这不是常见的名称,而是我认为您需要的常见名称模式

,因此我尝试使变量具有某种含义

successfulTransmissionCount

widgetUnitPrice

unusedSessionTimeout

,但有时,在存在歧义的情况下,我可能会使用“单位”后缀。如果我正在处理两个现有的 API,一个在几秒内工作,一个在毫秒内工作,这确实有助于提醒我的眼睛单位

 long unusedSessionTimeoutMillis

(是的,有使用原始原始类型的替代方法可以产生相同的效果)

It's not common names, but common patterns of names I think you need

So I try to make the variables mean something

successfulTransmissionCount

widgetUnitPrice

unusedSessionTimeout

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

 long unusedSessionTimeoutMillis

(Yes there are alternatives to using raw primitive types that may give the same effect)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文