All Subjects
Light
collapse
Practice Quizzes
AP Computer Science A
Unit 5 – Writing Classes in AP Computer Science A
Topic 5.7
Why does the following example class not compile? class ClassName { public static String variableName; public void methodName() { variableName = "exampleString"; } // Constructor not shown }
It does compile because a non-static method called "methodName()" tries to set the value of a static variable, "variableName."
The static method "methodName()" tries to set the value of the instance variable "variableName."
The non-static method "methodName()" tries to set the value of the instance variable "variableName."
The static method "methodName()" tries to set the value of the static variable "variableName."
Related content
Practice quizzes
Practice this subject
Practice this unit
Practice this topic
Study guides (1)
AP Computer Science A - 5.7 Static Variables and Methods
Key terms
Class
Constructor
String
variableName
public void
About Us
About Fiveable
Blog
Careers
Testimonials
Code of Conduct
Terms of Use
Privacy Policy
CCPA Privacy Policy
Resources
Cram Mode
AP Score Calculators
Study Guides
Practice Quizzes
Glossary
Crisis Text Line
Request a Feature
Report an Issue
Stay Connected
© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.
About Us
About Fiveable
Blog
Careers
Testimonials
Code of Conduct
Terms of Use
Privacy Policy
CCPA Privacy Policy
Resources
Cram Mode
AP Score Calculators
Study Guides
Practice Quizzes
Glossary
Crisis Text Line
Request a Feature
Report an Issue
© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.
Back
Practice Quiz
Guides
Glossary
Guides
Glossary
Next