NULL represents the null object in R: it is a reserved word. NULL is often returned by expressions and functions whose value is undefined: it is also used as the empty pairlist.
NULL代表在R空对象:它是一个保留字。 NULL常常返回由表达式和函数,其值是不确定的:它也是作为空pairlist使用。
as.null ignores its argument and returns the value NULL.
as.null忽略其参数和返回值NULL。
is.null returns TRUE if its argument is NULL and FALSE otherwise.
is.null返回TRUE如果它的参数是NULL和FALSE否则。
用法----------Usage----------
NULL
as.null(x, ...)
is.null(x)
参数----------Arguments----------
参数:x
an object to be tested or coerced.
一个对象进行测试或胁迫。
参数:...
ignored.
忽略。
注意----------Note----------
is.null is a primitive function.
is.null是一种原始的功能。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
举例----------Examples----------
is.null(list()) # FALSE (on purpose!)[FALSE(目的!)]
is.null(integer(0))# F[F]
is.null(logical(0))# F[F]
as.null(list(a=1,b='c'))