CJCoding With Joseph

Fluent Interface Returning the Same Type

Complete the PathBuilder class so that it implements the IPathBuilder interface. Add must append "/" followed by part to the stored path and then return the same builder (this) so calls can be chained. Build returns the finished path string. Do NOT write a Main method.

The tester chains calls like b.Add("home").Add("user").Add("docs").Build(), so the program prints:

/home/user/docs

Expected Output:

/home/user/docs
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.