Thread Rating:
  • 297 Vote(s) - 2.88 Average
  • 1
  • 2
  • 3
  • 4
  • 5
null 判断をシンプルに記述したい
08-28-2013, 04:23 PM,
#1
null 判断をシンプルに記述したい
NULLである可能性のあるクラスの中の、フィールドを、 NULL でないかどうかを判断する際に、
if-non-null をネストするのが面倒です。

ORBを利用すると、各フィールドはすべて Nullable になるため、
この問題は特に多く発生すると思います。

よい判断方法はありますでしょうか。

Code:
{define-class public Test
  field test-a:#String
  {constructor public {default
                          str:#String = null
                      }
    set self.test-a = str
  }
}

{CommandButton
    label = "NULL チェック",
    {on Action do
        let t:#Test  = null
        {if-non-null t then
            {if-non-null t.test-a then
                {popup-message "all-not-null"}
            }
        }
    }
}


Messages In This Thread
null 判断をシンプルに記述したい - by umemura - 08-28-2013, 04:23 PM
Forum Jump:


Users browsing this thread:
1 Guest(s)

MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1017 - Can't find file: 'mybb_threadviews' (errno: 2)
Query:
INSERT INTO mybb_threadviews (tid) VALUES('960')