1 NX9+VS2012 2 3 #include <uf.h> 4 #include <uf_modl.h> 5 6 UF_initialize(); 7 8 //创建一个新的表达式,无TAG 9 UF_MODL_create_exp("DC=100"); 10 11 //创建一个新的表达式,有TAG 12 tag_t NewExpTag = NULL_TAG; 13 UF_MODL_create_exp_tag("DMM=151.5", &NewExpTag); 14 15 UF_terminate();