'where'关键字在C中的含义是什么?

时间:2010-03-11 09:26:43

标签: c syntax

我今天偶然发现了这个C代码。任何人都可以告诉我'where'关键字的含义:

*y = sy + exit->y + (where * (entry->y + esy - exit->y));

编辑:

啊,我的坏人。它只是一个变量名。 VC ++突出显示它,好像它是一个关键字。

2 个答案:

答案 0 :(得分:9)

这只是一个变量名......

where在此处突出显示为蓝色,因为C#支持where作为LINQ中的关键字。)

答案 1 :(得分:1)

Here is a list of C's keywords。 C中没有where个关键字,它只是一个变量(或者可能是一个宏)。