• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Could not find symbol class.

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


now i get the error showing this "could not find symbol class person"
 
lowercase baba
Posts: 13091
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you are actually getting more than that in your error. It tells you the exact line the error appears on. All that information is helpful.

Further, you are probably getting "could not find symbol class Person". Note the capital "P". In java, the case makes a difference, so "person" is NOT the same thing at all as "Person". These sort of details are important.

Looking at your code, I am not surprised you get this error. What is a "Person"? You are trying to create an array of them on line 11, but nowhere do you tell the java compiler what a person is. At the very least, you need to have a class somewhere that defines what a Person class looks like. You may then need to import it, depending on where the .class file is.
 
Marshal
Posts: 80634
471
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
. . . but the thread title suggested a completely different error message.
 
reply
    Bookmark Topic Watch Topic
  • New Topic