共用方式為


ExtraTopLevelOperators.fprintf<'T> 函式 (F#)

更新:2010 年 5 月

fprintf 函式會列印到檔案,使用指定的格式。

命名空間/模組路徑:Microsoft.FSharp.Core.ExtraTopLevelOperators

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
fprintf : TextWriter -> TextWriterFormat<'T> -> 'T

// Usage:
fprintf textWriter format

參數

備註

這個函式是名為 PrintFormatToTextWriter中 已編譯的組件。 如果從一個語言,F # 以外,或透過反映存取函式使用這個名稱。

範例

以下範例將說明 fprintf 的用法。

let printNumbersToFile fileName n =
   // "use" will cause the file to be closed when it
   // goes out of scope.
   use file = System.IO.File.CreateText(fileName)
   [ 1 .. n ]
   |> List.iter (fun elem -> fprintf file "%d " elem)
   fprintfn file ""
printNumbersToFile "1to100.txt" 100

所得的檔案 1to100.txt包含 下列的資料。

  

平台

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本資訊

F# 執行階段

支援版本:2.0、4.0

Silverlight

支援版本:3

請參閱

參考

Core.ExtraTopLevelOperators 模組 (F#)

Microsoft.FSharp.Core 命名空間 (F#)

變更記錄

日期

History

原因

2010 年 5 月

加入程式碼範例。

資訊加強。