基於在最新版本的Gnuplot中對command.c
的源代碼的簡要檢查,我會說這個功能不被支持。更具體地說,相關部分可以在1163
(見下面)中找到。解析器首先確保if
後面跟着括號中的條件。如果以下標記爲{
,則它會激活新語法,將封閉在匹配的一對{}
中的整個if塊隔離,並且可選地查找else
,但是隻允許使用{}
(含)條款。由於這個原因,一個簡單的腳本,例如:
if(flag == 1){
print 1;
}else if(flag == 2){
print 2;
}
確實產生錯誤信息expected {else-clause}
。一個解決辦法是嵌套if語句爲:
if(flag == 1){
}else{
if(flag == 2){
}else{
if(flag == 3){
}
}
}
這是無可否認稍微詳細...
void
if_command()
{
double exprval;
int end_token;
if (!equals(++c_token, "(")) /* no expression */
int_error(c_token, "expecting (expression)");
exprval = real_expression();
/*
* EAM May 2011
* New if {...} else {...} syntax can span multiple lines.
* Isolate the active clause and execute it recursively.
*/
if (equals(c_token,"{")) {
/* Identify start and end position of the clause substring */
char *clause = NULL;
int if_start, if_end, else_start=0, else_end=0;
int clause_start, clause_end;
c_token = find_clause(&if_start, &if_end);
if (equals(c_token,"else")) {
if (!equals(++c_token,"{"))
int_error(c_token,"expected {else-clause}");
c_token = find_clause(&else_start, &else_end);
}
end_token = c_token;
if (exprval != 0) {
clause_start = if_start;
clause_end = if_end;
if_condition = TRUE;
} else {
clause_start = else_start;
clause_end = else_end;
if_condition = FALSE;
}
if_open_for_else = (else_start) ? FALSE : TRUE;
if (if_condition || else_start != 0) {
clause = new_clause(clause_start, clause_end);
begin_clause();
do_string_and_free(clause);
end_clause();
}
你能避免使用在你的第二個例子'else'並獲得你所需要的。 –