java stringbuilder appendline_StringBuilder

將預設行結束字元附加至目前 StringBuilder 物件的尾端。Appends the default line terminator to the end of the current StringBuilder object.

public:

System::Text::StringBuilder ^ AppendLine();

public System.Text.StringBuilder AppendLine ();

[System.Runtime.InteropServices.ComVisible(false)]

public System.Text.StringBuilder AppendLine ();

member this.AppendLine : unit -> System.Text.StringBuilder

[]

member this.AppendLine : unit -> System.Text.StringBuilder

Public Function AppendLine () As StringBuilder

傳回

完成附加作業之後,這個執行個體的參考。A reference to this instance after the append operation has completed.

例外狀況

加大此執行個體的值可能會超過 MaxCapacity。Enlarging the value of this instance would exceed MaxCapacity.

範例

下列範例會示範 AppendLine 方法。The following example demonstrates the AppendLine method.

// This example demonstrates the StringBuilder.AppendLine()

// method.

using namespace System;

using namespace System::Text;

int main()

{

StringBuilder^ sb = gcnew StringBuilder;

String^ line = L"A line of text.";

int number = 123;

// Append two lines of text.

sb->AppendLine( L"The first line of text." );

sb->AppendLine( line );

// Append a new line, an empty string, and a null cast as a string.

sb->AppendLine();

sb->AppendLine( L"" );

sb->AppendLine( L"" );

// Append the non-string value, 123, and two new lines.

sb->Append( number )->AppendLine()->AppendLine();

// Append two lines of text.

sb->AppendLine( line );

sb->AppendLine( L"The last line of text." );

// Convert the value of the StringBuilder to a string and display the string.

Console::WriteLine( sb );

return 0;

}

/*

This example produces the following results:

The first line of text.

A line of text.

123

A line of text.

The last line of text.

*/

// This example demonstrates the StringBuilder.AppendLine()

// method.

using System;

using System.Text;

class Sample

{

public static void Main()

{

StringBuilder sb = new StringBuilder();

string line = "A line of text.";

int number = 123;

// Append two lines of text.

sb.AppendLine("The first line of text.");

sb.AppendLine(line);

// Append a new line, an empty string, and a null cast as a string.

sb.AppendLine();

sb.AppendLine("");

sb.AppendLine((string)null);

// Append the non-string value, 123, and two new lines.

sb.Append(number).AppendLine().AppendLine();

// Append two lines of text.

sb.AppendLine(line);

sb.AppendLine("The last line of text.");

// Convert the value of the StringBuilder to a string and display the string.

Console.WriteLine(sb.ToString());

}

}

/*

This example produces the following results:

The first line of text.

A line of text.

123

A line of text.

The last line of text.

*/

' This example demonstrates the StringBuilder.AppendLine()

' method.

Imports System.Text

Class Sample

Public Shared Sub Main()

Dim sb As New StringBuilder()

Dim line As String = "A line of text."

Dim number As Integer = 123

' Append two lines of text.

sb.AppendLine("The first line of text.")

sb.AppendLine(line)

' Append a new line, an empty string, and a null cast as a string.

sb.AppendLine()

sb.AppendLine("")

sb.AppendLine(CStr(Nothing))

' Append the non-string value, 123, and two new lines.

sb.Append(number).AppendLine().AppendLine()

' Append two lines of text.

sb.AppendLine(line)

sb.AppendLine("The last line of text.")

' Convert the value of the StringBuilder to a string and display the string.

Console.WriteLine(sb.ToString())

End Sub

End Class

'

'This example produces the following results:

'

'The first line of text.

'A line of text.

'

'

'

'123

'

'A line of text.

'The last line of text.

備註

The default line terminator is the current value of the Environment.NewLine property.

此實例的容量會視需要調整。The capacity of this instance is adjusted as needed.

給呼叫者的注意事項

在 .NET Core 和 .NET Framework 4.0 和更新版本中,當您呼叫此函式來具現化物件時, StringBuilder StringBuilder(Int32, Int32) 實例的長度和容量都 StringBuilder 可以成長超過其屬性的值 MaxCapacity 。In .NET Core and in the .NET Framework 4.0 and later versions, when you instantiate the StringBuilder object by calling the StringBuilder(Int32, Int32) constructor, both the length and the capacity of the StringBuilder instance can grow beyond the value of its MaxCapacity property. This can occur particularly when you call the Append(String) and AppendFormat(String, Object) methods to append small strings.

另請參閱

適用於

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值