Hello. I have been asked to go and find out about placeholders in Java. I have searched the internet and cannot find any site that will tell me what a placeholder is (in java terms), how they work and why we would use them. I was wondering if anybody could help? cheers.
|
|
|||||||||||||
|
|
|
Perhaps your questioner forgot to substitute the real question for "placeholder" ? |
||
|
|
|
In some context the keys used in a property file is called place holder. I think in spring framework we calls the keys as place holder. eg: smtp.server=192.168.3.9 here smtp.server is called as a placeholder |
||
|
|
|
|
Maybe they're talking about annotations? That's one Java feature I could think of where someone would say "go learn more about this". |
||
|
|
|
|
The only Java context where I've heard the term placeholder used is in creating PreparedStatements. Sun's Using Prepared Statements tutorial gives the following example:
Here, the
Of course, there's much more detail in the tutorial I linked to. Without more context in your question, I'm not sure if this is what you're asking about or not. |
||
|
|
|
I'm guessing you're talking about the format strings in Java 5+:
Really you should ask whoever told you to research them to specify exactly what they mean. |
||||||
|
|
|
When I think of place holder I think of the following:
In that case the In this case, the placeholder makes the code much prettier. The alternative may be something like:
However, placeholder is a very general term. Some more context would be helpful. |
|||
|
|
