Class FizzBuzz
- java.lang.Object
-
- g1101_1200.s1195_fizz_buzz_multithreaded.FizzBuzz
-
public class FizzBuzz extends Object
1195 - Fizz Buzz Multithreaded.Medium
You have the four functions:
printFizz
that prints the word"Fizz"
to the console,printBuzz
that prints the word"Buzz"
to the console,printFizzBuzz
that prints the word"FizzBuzz"
to the console, andprintNumber
that prints a given integer to the console.
You are given an instance of the class
FizzBuzz
that has four functions:fizz
,buzz
,fizzbuzz
andnumber
. The same instance ofFizzBuzz
will be passed to four different threads:- Thread A: calls
fizz()
that should output the word"Fizz"
. - Thread B: calls
buzz()
that should output the word"Buzz"
. - Thread C: calls
fizzbuzz()
that should output the word"FizzBuzz"
. - Thread D: calls
number()
that should only output the integers.
Modify the given class to output the series
[1, 2, "Fizz", 4, "Buzz", ...]
where theith
token ( 1-indexed ) of the series is:"FizzBuzz"
ifi
is divisible by3
and5
,"Fizz"
ifi
is divisible by3
and not5
,"Buzz"
ifi
is divisible by5
and not3
, ori
ifi
is not divisible by3
or5
.
Implement the
FizzBuzz
class:FizzBuzz(int n)
Initializes the object with the numbern
that represents the length of the sequence that should be printed.void fizz(printFizz)
CallsprintFizz
to output"Fizz"
.void buzz(printBuzz)
CallsprintBuzz
to output"Buzz"
.void fizzbuzz(printFizzBuzz)
CallsprintFizzBuzz
to output"FizzBuzz"
.void number(printNumber)
Callsprintnumber
to output the numbers.
Example 1:
Input: n = 15
Output: [1,2,“fizz”,4,“buzz”,“fizz”,7,8,“fizz”,“buzz”,11,“fizz”,13,14,“fizzbuzz”]
Example 2:
Input: n = 5
Output: [1,2,“fizz”,4,“buzz”]
Constraints:
1 <= n <= 50
-
-
Constructor Summary
Constructors Constructor Description FizzBuzz(int n)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
buzz(Runnable printBuzz)
void
fizz(Runnable printFizz)
void
fizzbuzz(Runnable printFizzBuzz)
void
number(IntConsumer printNumber)
-
-
-
Method Detail
-
fizz
public void fizz(Runnable printFizz) throws InterruptedException
- Throws:
InterruptedException
-
buzz
public void buzz(Runnable printBuzz) throws InterruptedException
- Throws:
InterruptedException
-
fizzbuzz
public void fizzbuzz(Runnable printFizzBuzz) throws InterruptedException
- Throws:
InterruptedException
-
number
public void number(IntConsumer printNumber) throws InterruptedException
- Throws:
InterruptedException
-
-