使用整数的 if/then 条件语句
超级简单,我确信 - 但在使用 droid 的条件 if/then 语句中,我该如何将它们与整数一起使用,即:
int currentHour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
public void getResult(int currentHour, Intent intent) {
if (currentHour < 14) then:
//do something
}
我知道这不是正确的方法,但我有一个大脑放屁比较整数...谢谢!
Super easy, I am sure - but in conditional if/then statements using droid, how do I go about using them with integers, ie:
int currentHour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
public void getResult(int currentHour, Intent intent) {
if (currentHour < 14) then:
//do something
}
I know this isn't the right way to do it, but I am having a brain fart as to comparing ints...thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我强烈怀疑您正在寻找
This is common to几乎所有 C 语法语言。
I strongly suspect you're looking for
This is common to virtually all C-syntax languages.