जवाबों:
जहां तक मैं javadoc के लिए डॉक्स पढ़ने के बाद बता सकता हूं, ऐसी कोई सुविधा नहीं है।
<code>foo</code>
अन्य उत्तरों में अनुशंसित अनुसार उपयोग न करें ; आप उपयोग कर सकते हैं {@code foo}
। जब आप एक सामान्य प्रकार का उल्लेख करते हैं तो यह जानना विशेष रूप से अच्छा है {@code Iterator<String>}
- निश्चित रूप से अच्छा लगता है <code>Iterator<String></code>
, है ना!
जैसा कि आप java.lang.String वर्ग के जावा स्रोत में देख सकते हैं:
/**
* Allocates a new <code>String</code> that contains characters from
* a subarray of the character array argument. The <code>offset</code>
* argument is the index of the first character of the subarray and
* the <code>count</code> argument specifies the length of the
* subarray. The contents of the subarray are copied; subsequent
* modification of the character array does not affect the newly
* created string.
*
* @param value array that is the source of characters.
* @param offset the initial offset.
* @param count the length.
* @exception IndexOutOfBoundsException if the <code>offset</code>
* and <code>count</code> arguments index characters outside
* the bounds of the <code>value</code> array.
*/
public String(char value[], int offset, int count) {
if (offset < 0) {
throw new StringIndexOutOfBoundsException(offset);
}
if (count < 0) {
throw new StringIndexOutOfBoundsException(count);
}
// Note: offset or count might be near -1>>>1.
if (offset > value.length - count) {
throw new StringIndexOutOfBoundsException(offset + count);
}
this.value = new char[count];
this.count = count;
System.arraycopy(value, offset, this.value, 0, count);
}
पैरामीटर संदर्भ <code></code>
टैग से घिरे होते हैं , जिसका अर्थ है कि Javadoc सिंटैक्स ऐसा काम करने का कोई तरीका प्रदान नहीं करता है। (मुझे लगता है कि String.class javadoc उपयोग का एक अच्छा उदाहरण है)।
मुझे लगता है कि आप इस व्यवहार का समर्थन करने के लिए अपना खुद का डॉकलेट या टैगलेट लिख सकते हैं।
@code
टैग में वर्णन किया गया है टैग वर्णन - जावाडोक । JDK8 कोड में नमूना उपयोग देखें ।