Home > Salesforce Apex


Salesforce Apex における null チェックの方法

if 文を使用した null チェック: null チェックを行うために、if 文を使用する方法があります。以下は例です。String myString = null; if (myString != null) { // null でない場合の処理 System.debug('myString の値は ' + myString + ' です。'); } else { // null の場合の処理 System.debug('myString は null です。'); }>>More