Transcription of Quick Reference AP Computer Science A - College Board
{{id}} {{{paragraph}}}
Quick Reference AP Computer Science A. 2011 The College Board . Visit the College Board on the Web: Content of Appendixes Appendix A .. Java Quick Reference Appendix B .. Testable API. Appendix C .. Testable Code Appendix E .. GridWorld Quick Reference Appendix G .. Index for Source Code i Appendix A Java Quick Reference Appendix A Java Quick Reference Accessible Methods from the Java Library That May Be Included on the Exam class boolean equals(Object other). String toString(). class Integer(int value). int intValue(). // minimum value represented by an int or Integer // maximum value represented by an int or Integer class Double(double value). double doubleValue(). class int length(). String substring(int from, int to) // returns the substring beginning at from // and ending at to-1. String substring(int from) // returns substring(from, length()). int indexOf(String str) // returns the index of the first occurrence of str.
Appendix B Testable API -B1- Appendix B — Testable API info.gridworld.grid.Location class (implements Comparable) public Location(int r, int c) constructs a location with given row and column coordinates
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}