FastCat is a streamlined speedy version of StringBuffer/StringBuilder that
is more efficient because it does not allocate a buffer until the very
last minute, and allocates it the exact size needed. You use it in
writing your own Java Programs. It works very similarly to StringBuilder,
so the Javadoc should be all you need.
FastCat is null-safe. If you pass a null or a 0-length string to one of
the .append methods it does nothing. This means you can streamline your
application code. You don't have to explicitly avoid appending nulls, an
error that can slip through testing with StringBuilder since it may occur
only rarely. FastCat does not work well if you append one character at a
time to your FastCat. For that sort of application, use the traditional
StringBuilder. FastCat works very quickly with minimal RAM usage if you
can accurately predict roughly how many chunks you will append but have
only a vague idea of the final total size. By minimising RAM usage, your
garbage collection occurs less frequently, which speeds it up. I got a
10% speedup when I switched over the HTMLMacros app to use it.
The basic idea of FastCat is you estimate how many chunks you concatenate,
not the length of the output.
is more efficient because it does not allocate a buffer until the very
last minute, and allocates it the exact size needed. You use it in
writing your own Java Programs. It works very similarly to StringBuilder,
so the Javadoc should be all you need.
FastCat is null-safe. If you pass a null or a 0-length string to one of
the .append methods it does nothing. This means you can streamline your
application code. You don't have to explicitly avoid appending nulls, an
error that can slip through testing with StringBuilder since it may occur
only rarely. FastCat does not work well if you append one character at a
time to your FastCat. For that sort of application, use the traditional
StringBuilder. FastCat works very quickly with minimal RAM usage if you
can accurately predict roughly how many chunks you will append but have
only a vague idea of the final total size. By minimising RAM usage, your
garbage collection occurs less frequently, which speeds it up. I got a
10% speedup when I switched over the HTMLMacros app to use it.
The basic idea of FastCat is you estimate how many chunks you concatenate,
not the length of the output.
概要
FastCat は、 Canadian Mind Productsによって開発されたカテゴリ ウェブ開発 の フリーウェア ソフトウェアです。
FastCat の最新バージョン 2.4 2014/11/14 にリリースです。 それは最初 2014/11/14 のデータベースに追加されました。
FastCat が次のオペレーティング システムで実行されます: Android/iOS/Windows。
FastCat は私達のユーザーがまだ評価されていません。
最新のレビュー
|
|
Send Anywhere
Send Anywhereで簡単にファイル共有! |
|
|
novaPDF SDK COM (x86)
NovaPDF SDK COM:開発者向けの堅牢なPDF前処理ツール |
|
|
UnHackMe
UnHackMe:マルウェアに対するデジタルボディーガード |
|
|
MSYS2 64bit
MSYS2:Windowsのための究極の開発環境 |
|
|
HP Connection Manager
HP Connection Managerでシームレスにつながりましょう! |
|
|
Freemake YouTube To MP3 Boom
Freemake YouTube To MP3 BoomでYouTube動画をMP3に簡単に変換できます |
|
|
UpdateStar Premium Edition
ソフトウェアを最新の状態に保つことは、UpdateStar Premium Edition でかつてないほど簡単になりました。 |
|
|
Google Chrome
高速で用途の広いWebブラウザ |
|
|
Microsoft Edge
Webブラウジングの新しい標準 |
|
|
Microsoft Visual C++ 2015 Redistributable Package
Microsoft Visual C++ 2015再頒布可能パッケージでシステムパフォーマンスを向上させましょう! |
|
|
Microsoft OneDrive
Microsoft OneDriveでファイル管理を効率化 |
|
|
Microsoft Visual C++ 2010 Redistributable
Visual C++ アプリケーションの実行に不可欠なコンポーネント |