很多天我对此感到困惑,无法理解如何解决它。我从Web服务器获取一些数据并将其分配给字符串变量。如果有时没有可用数据分配它,则该字符串会更新为null( NULL
),nil
有时更新为(nil) (null)
。所以我很困惑如何比较其中的数据多变的。
if(stringvariable==NULL) // couldnot understand how to compare here ,with NULL or nil or (null)
{
// do something
}
字符串变量何时会改变其状态(变为NULL
ornil
或(null)
)?