tags:

views:

88

answers:

2

What is meant by the src in Eclipse IDE?

Also what are all the default packages/components/classes created by the eclipse IDE for us?

+4  A: 

You mean the src folder? It's short for "source", it's where the source code files are stored. When it compiles it stores the class files in bin

Michael Mrozek
+2  A: 

The word 'src' is a common abbreviation for 'source' ... e.g. the project's source code.

Stephen C