摘要: #include "ExprParser.h"/*词法分析*/int g_type,g_error,g_braBal,g_oper;double g_value;const char* g_str,*g_last_str,* g_pos;int GetNextToken(){ static char tokenBuf[32]; int tokenPos=0,nDot=0; g_last_str=g_str; while (*g_str==' ')++g_str; //改动1 if (!*g_str) return g_type=END; //Comment: 阅读全文
posted @ 2011-06-07 12:46 kangwang1988 阅读(609) 评论(0) 推荐(0)