I have always wondered why in code examples (tutorials mostly) the names "Foo" and "Bar" are used so often. It is almost a standard.
For example:
int foo(char* bar){
printf("%s", bar);
}
|
2
|
|
|
|
|
|
The New Hacker's Dictionary has a very good entry on this - and I consider it to be a better resource for this kind of thing that Wikipedia:
|
||||
|
|
|
From http://en.wikipedia.org/wiki/Foobar In technology, the word was probably originally propagated through system manuals by Digital Equipment Corporation in 1960s and early 1970s. Another possibility is that foobar evolved from electronics, as an inverted foo signal. This is because if a digital signal is active low (so a negative or zero-voltage condition represents a "1") then a horizontal bar is commonly placed over the signal label. The Jargon File makes a case that foo possibly predates FUBAR |
||
|
|
|
From the Jargon Files http://www.catb.org/jargon/html/F/foo.html foo: /foo/
bar: /bar/, n.
|
||
|
|
|
|
I always thought foo bar came from the pronunciation of FUBAR. (F*cked up beyond all reason) |
||
|
|
|
|
Within the Python community, the right counterparts of foo and bar are spam and eggs. |
||
|
|
|
|
|
||
|
|
|
Let me add that it's a cultural thing. In Italy we use other common names for generic variables, files etc. We commonly use the (italian) names of Disney characters. |
||
|
|
|
|
It has the nice side effect of making it obvious to the experienced reader that the given code sample is just an example. You could see it as a warning agains uncontrolled copy&paste... |
||
|
|
|
|
It came from FUBAR. F'ed up beyond all recognition. |
|||
|
|