vote up 4 vote down star

Possible Duplicates:
To foo bar, or not to foo bar: that is the question.
Where did "Foo" and "Bar" come from?

Bit of a general question here, but it's something I would like to know!

Whenever I am looking for resolutions to my C# problems online, I always come across "foo" being used as an example. Does this represent anything or is it just one of those unexplained catchy object names, used by many people in examples?

flag
Dupe of stackoverflow.com/questions/262271/… among others – Neil Butterworth Jun 1 at 13:08
How about Acme company ? – Sake Jun 1 at 13:09
How about more concrete examples in general? Foobar is a pet peeve of mine because it lacks context -- a critical component in learning any new concept. – Jeremy Frey Jun 1 at 13:30

closed as exact duplicate by Neil Butterworth, Jon B, Paul Dixon, John Topley, Jason S Jun 1 at 13:22

8 Answers

vote up 12 vote down check

Here is wikipedia's answer:

The terms foobar, foo, bar, and baz, are common placeholder names (also referred to as metasyntactic variables) used in computer programming or computer-related documentation. They are commonly used to represent unknown values, typically when describing a scenario where the purpose of the unknown values are understood, but their precise values are arbitrary and unimportant. The terms can be used to represent any part of a complicated system or idea, including the data, variables, functions, and commands. The words themselves have no meaning in this usage, and are merely logical representations, much like the letters x and y are used in algebra. Foobar is often used alone; foo, bar, and baz are usually used in that order, when multiple entities are needed.

Foo has entered the English language as a neologism and is considered by many to be the canonical example of a metasyntactic variable.[citation needed] It is used extensively in computer programming examples (sometimes expressed as "for once only") and pseudocode. Eric S. Raymond has called it an "important hackerism" alongside kludge and cruft.[1]

http://en.wikipedia.org/wiki/Foo

link|flag
2  
+1 for "citation needed" :P – shylent Jun 1 at 13:12
4  
or you could just admit it comes from fubar = '"f" up beyond all recognition' – Jonathan Fingland Jun 1 at 13:20
vote up 1 vote down

Also see April 1st RFC 3092 - Etymology of "Foo".

link|flag
vote up 0 vote down

Perhaps Jeff's answer, further linking the jargon file, would be better (as I source checked myself before posting a notional linkage to FUBAR):

link|flag
vote up 1 vote down

Foo and Bar (otherwise known as FUBAR...F***ed Up Beyond All Recognition) has just been used as standard generic names for things like classes, properties, method names, etc.

Basically the idea is to convey your code without as much extraneous information that could possibly get away from how the code works (i.e. we don't need to know your function is named AddUser to see the code and understand what it does if we rename it to Foo() ).

link|flag
vote up 3 vote down

As far as I know, foo comes from foobar which is an alteration of "fubar", a military catch phraase that stands for "F***ed up beyond all recognition."

Then again, there may be other sources.

http://en.wikipedia.org/wiki/Foo

link|flag
vote up 1 vote down

Look here: http://en.wikipedia.org/wiki/FUBAR

link|flag
vote up 5 vote down

According to http://en.wikipedia.org/wiki/Foo:

"The terms' origins are not known with certainty, and several anecdotal theories have been advanced to identify them. Foobar may derive from the vulgar military acronym FUBAR, or it may have gained popularity due to the fact that it is pronounced the same."

link|flag
vote up 7 vote down

It's meaningless, like "widget". It allows you to use a word without worrying about what word to use. See here for more.

For a non-programming use, see Foo Figher (not the band).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.