Ch. 17-18-19 Flashcards
compareTo()
- return type
- definition
- explanation of the format
- static or not
- returns an int
- compares the ASCII values of any object, returning a negative int if the object is less that the compared value, a positive if it is more, and zero if they are equal.
- s.compareTo(“this is what I compare to”);
- not static
what is the version of compareTo() that is not case sensitive
.compareToIgnoreCase
how many versions of indexOf are there? What do they all do if the search comes up empty?
6, and they all would return -1
indexOf(String str)
- return type
- definition
- explanation of the format
- static or not
- returns an int
- returns the index of the segment within the String
- s.indexOf(“thing i want index of”);
- not static
indexOf(String s, int from)
does the same thing as indexOf(String s) but starts checking from the index of the int parameter (from).
indexOf(char ch)
searches from left to right for the first occurrence of the char.
indexOf(int ascii)
similar to ch, except instead of giving a char it gives the ascii code of a char
indexOf(char ch, int from)
starting from the index ‘from’, checking for char ch.
indexOf(int ascii, int from)
similar to indexOf(char ch, int from) except the char is gotten from the character’s ascii code.
lastIndexOf()
with six versions, it is exactly the same as indexOf except it starts searching right to left rather than left to right
charAt(int indx)
- return type
- definition
- explanation of the format
- static or not
- returns a char
- returns the char that is at the specified index
- s.charAt(3); This returns the character that is at index 3 of the string s.
- not static
replace(char old, char new)
replaces all occurrences of the old char with the new char
replace(String old, String new)
replaces all occurrences of the old string with the new string
s.trim()
not static
removes the whitespace from both ENDS of the String while leaving the interior whitespaces alone.
contains(String ss)
- return type
- definition
- explanation of the format
- static or not
- returns a boolean
- returns true if the String contains the String ss
- “something”.contains(“some”); or s.contains(“hay”);
- not static
startsWith(String ss)
- return type
- definition
- explanation of the format
- static or not
- return a boolean
- returns true if the string starts with String ss.
- s.startsWith(“something”); or “something”.startsWith(“some”);
- not static
delimiters
a series of characters that separates the text presented to a scanner object into separate tokens
position of scanner
always BETWEEN two characters (like a cursor) never on top of one
what is the default delimeter
whitespace
sc.next()
moves position of scanner to right and returns the next complete token.
sc.findInLine(“ri”);
returns “ri” and places position right after “ri” in the string.
what is the code for whitespace and more than one whitespace
\s and \s+
sc.useDelimiter(“xxs”);
delimeter used is now “xxs”
what is the code for zero or more whitespace characters
\s*
sc.skip(“skipthis”);
advances the position by skipping over “skipthis”. The substring skipped over must occur directly after the current position
what is a complete token in Scanner?
a token inbetween two instances of the current delimiter
what will be returned if two delimiters are right next to each other?
an empty string, which was “between” the two delimiters.
sc.hasNext()
returns true if the String still has a next character for the Scanner position to move over, else it has reached the end of the String
was does a * after a delimiter mean?
zero or more occurrences of this delimiter
symbol for non-word characters
\W
what is the difference between passing arrays to methods and passing say integers.
Integers and other types only transfer copies to the method (the original stays unchanged) while arrays actually physically pass the array, meaning that anything changed changes the original array.
s.split(“a”)
not static
CREATES ARRAY by splitting the string into elements between the defined regex, in this case “a”
what does | mean when used with split (ex: a|g)
split on a OR g
how can split() be used to count the number of occurrences in a string
the length of the split array minus 1 will yield the number of occurrences of whatever regex was defined, though if the regex is at very end, array.length is the number of occurrences.
why can’t for-each loops be used to initialize objects in an array?
because the loop uses a local variable to represent each individual element rather than the element itself.
what would you use to compare objects that are elements of the array?
.equals
what does NullPointerException mean?
the array has not been initialized yet, ergo is pointing to nothing
what does null do?
sets all elements of the array to null, so that assigning values after the nullification only yields a NullPointerException
System.arraycopy(fromArray, startIndex, endArray, toIndex, howMany)
STATIC: SYSTEM
copies a portion from one array to another array, and is STATIC to the System class.
s.toCharArray()
turns a string into an array of chars.
String.copyValueOf(ch)
STATIC VARIABLE FOR STRING CLASS
takes the char parameter and copies that into the String. It is a static variable for the String class.
what is the logical size
the number of actual element in the array, as opposed to it’s initialized maximum value.
what is the physical size?
myArray.length, since it is the initialized length of the array.
Arrays.sort(myArray)
sorts the array in ascending order. STATIC meth
Arrays.binarySearch(myArray, 2);
STATIC METHOD that returns the index of the last element that contains the value of the key.
what has to happen to the array before binarySearch can occur?
it must be sorted in ascending order
what does binary search return if it cannot find the key?
it returns the negated index of the element that would have come after the key, if it had been there.
Arrays.equals(x, y)
compares two arrays. STATIC
Arrays.fill(myArray, value)
static method; fills all spots in the array with the value.
Arrays.toString(myArray)
turns it into a String
enhanced for loop and read-only
the variable representing values in the for-each loop is local and cannot change the values of the elements.