I was looking through O'Reillys Java Cookbook (2ed) for some good stuff and found Scanner.create() method about 10 times. But there's no such in the API or class declaration\implementation. Ex: Page example
feedback
|
|
It's either referring to a non-SDK Scanner type or is an error in the book. There is no Update note: It appears that the
(So the only correct way to is use the constructor.) Happy coding. | |||||||||||
feedback
|
|
It is mentioned in Oracle forums that Scanner had create() methods in tiger-beta1, but they switched to constructors in beta2.
| ||||
|
feedback
|
|
Hmm looks like someone did not check the updated spec before the cookbook post! The only way to instatiate a Scanner objects is:
according to the API documentation | |||
|
feedback
|