String, Scanner

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

String Concatenation

joins together two or more strings end-to-end to make a new string.

ex: "Hello" + "CMSC131" --> "HelloCMSC131"

When a string is concatenated with another type, the other type is first evaluated and converted into its string representation

ex: (1+2) + "5" --> 35

2
New cards

string comparison

strings can not be compared using the opperators (==, <=, <. etc)

3
New cards

s.equals(t)

returns true if the s equals t

4
New cards

s.length()

returns length

5
New cards

s.compareTo(t)

compares strings lexicographically (dictionary order)

result < 0 if s is less than t

result == 0 if s is equal to t

result > 0 if s is greater than t

6
New cards

Scanner

allows users to input values

you MUST import a library before using scanner

7
New cards

importing a scanner library

import java.util.Scanner;

8
New cards

create a scanner object

new Scanner(input_source);

must be assigned to a variable

ex:
scanner = new Scanner(System.in);

9
New cards

scanner operations

scanner.nextBoolean()
scanner.nextByte()
scanner.nextDouble()
scanner.nextFloat()
scanner.nextInt()
scanner.nextLong()
scanner.nextShort()

10
New cards

next()

Returns sequence of characters up to next whitespace (space, carriage return, tab, etc.)

11
New cards

nextLine()

Returns sequence of characters up to next carriage return

12
New cards

reads the next character

char symbol = scanner.next().charAt(0);