On Tue, 10 Sep 2024 13:13:22 GMT, Shaojin Wen wrote:
>> The string concatenation of the java.base module is implemented using
>> StringBuilder. By providing a series of concat methods in
>> StringConcatHelper, it is used in the java.lang package to replace string
>> concatenation.
>>
>> These
On Tue, 10 Sep 2024 13:24:33 GMT, Shaojin Wen wrote:
>> src/java.base/share/classes/java/lang/invoke/StringConcatFactory.java line
>> 529:
>>
>>> 527: mh = simpleConcat3(paramType0);
>>> 528: mh = MethodHandles.insertArguments(mh, 0, prefix);
>>> 529:
On Tue, 10 Sep 2024 10:28:56 GMT, Claes Redestad wrote:
>> Shaojin Wen has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> more 2 arguments simple concat
>
> src/java.base/share/classes/java/lang/invoke/StringConcatFactory.java line
> 529:
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
On Mon, 9 Sep 2024 17:20:44 GMT, Shaojin Wen wrote:
>> The string concatenation of the java.base module is implemented using
>> StringBuilder. By providing a series of concat methods in
>> StringConcatHelper, it is used in the java.lang package to replace string
>> concatenation.
>>
>> These
On Sun, 8 Sep 2024 16:37:08 GMT, Claes Redestad wrote:
>> String concatenation is required in many places in java.lang. These static
>> concat methods will be used instead of "+", so null value processing is
>> added. This is also the motivation for using static concat methods instead
>> of Co
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
On Sun, 8 Sep 2024 14:44:16 GMT, Shaojin Wen wrote:
>> src/java.base/share/classes/java/lang/StringConcatHelper.java line 731:
>>
>>> 729: @ForceInline
>>> 730: static String concat(String prefix, float value, String suffix) {
>>> 731: if (prefix == null) prefix = "null";
>>
>>
On Sun, 8 Sep 2024 13:31:53 GMT, Claes Redestad wrote:
>> Shaojin Wen has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Update
>> src/java.base/share/classes/java/lang/invoke/StringConcatFactory.java
>>
>> Co-authored-by: Claes Redes
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
On Tue, 27 Aug 2024 10:09:09 GMT, Shaojin Wen wrote:
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat m
The string concatenation of the java.base module is implemented using
StringBuilder. By providing a series of concat methods in StringConcatHelper,
it is used in the java.lang package to replace string concatenation.
These concat methods can also be exposed through JLA for use by other packages,
15 matches
Mail list logo