โ Back to Interfaces
Question 698
Fluent Interface Returning the Same Type
Fluent Interface Returning the Same Type
Complete thePathBuilderclass so that it implements theIPathBuilderinterface.Addmust append"/"followed bypartto the stored path and then return the same builder (this) so calls can be chained.Buildreturns the finished path string. Do NOT write aMainmethod. The tester chains calls likeb.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.