在许多 Visual FoxPro 的命令和函数中,以 null 值作为参数传递将影响许多 Visual FoxPro 中的命令和函数的行为。下面的通用规则适用于传递给命令和函数的 null 值:
STORE .NULL. TO n
USE Mytable ALIAS &n && Expected a workarea
&& name or number
? SUBSTR("Hello, world",n,5) && Expected a position
&& in the string
在应用程序中使用 null 值的更多的信息,请看 程序员指南 第七章, Working with Tables。