I’m currently working on a project in which I stream in a text document and tokenize it. The only problem is the types in the text document is unknown, is there any way to check what variable type it is before I set it to a variable in the program?
|
|
No, because the type information is not contained in the text stream. For example, imagine the tokeniser encounters the following token:
What type does this have? It could be a String ( When you parse a file, you should already know what types to expect, and give an error if it does not match. The StringTokenizer class only gives you back Strings. If you are expecting Strings, you can just save them to a variable. If you are expecting another type, you must parse it. For example, if you read the string |
|||||
|