PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2023.11)Alice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of a long note. end note @enduml note over Alice, Charlie: Old method for note over all part. with:\n ""note over //FirstPart, LastPart//"". note across: New method with:\n""note across"" Bob->Alice hnote across:Note across all part. PlantUML で短い矢印を使用することができます。 @startuml ?-> Alice : ""?->""\n**short** to actor1 [-> Alice : ""[->""\n**from start** to actor1 [-> Bob : ""[->""\n**from start** to actor2 ?-> Bob : ""?->""\n**short** to actor2 Alice ->] : ""->]""\nfrom0 码力 | 545 页 | 7.75 MB | 1 年前3
PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2021.1)Alice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of a long note. PlantUML 言語リファレンスガイド note over Alice, Charlie: Old method for note over all part. with:\n ""note over //FirstPart, LastPart//"". note across: New method with:\n""note across"" Bob->Alice hnote across:Note across all part. @enduml で短い矢印を使用することができます。 @startuml ?-> Alice : ""?->""\n**short** to actor1 [-> Alice : ""[->""\n**from start** to actor1 [-> Bob : ""[->""\n**from start** to actor2 ?-> Bob : ""?->""\n**short** to actor2 Alice ->] : ""->]""\nfrom0 码力 | 393 页 | 4.27 MB | 1 年前3
PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2021.2)Alice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of PlantUML 言語リファレンスガイド (1.2021 note over Alice, Charlie: Old method for note over all part. with:\n ""note over //FirstPart, LastPart//"". note across: New method with:\n""note across"" Bob->Alice hnote across:Note across all part. @enduml で短い矢印を使用することができます。 @startuml ?-> Alice : ""?->""\n**short** to actor1 [-> Alice : ""[->""\n**from start** to actor1 [-> Bob : ""[->""\n**from start** to actor2 ?-> Bob : ""?->""\n**short** to actor2 Alice ->] : ""->]""\nfrom0 码力 | 399 页 | 4.33 MB | 1 年前3
PlantUML 1.2020.23 言語リファレンスガイドAlice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of a long note. end note @enduml using ?. @startuml ?-> Alice : ""?->""\n**short** to actor1 [-> Alice : ""[->""\n**from start** to actor1 [-> Bob : ""[->""\n**from start** to actor2 ?-> Bob : ""?->""\n**short** to actor2 Alice ->] : ""->]""\nfrom **to end** PlantUML 言語リファレンスガイド (1.2020.23) 21 / 305 1.28 アンカーと持続時間 1 シーケンス図 Alice ->? : ""->?""\n**short** from actor1 Alice -> Bob : ""->"" \nfrom actor1 to actor2 @enduml [Ref. QA-310] 1.28 アンカーと持続時間0 码力 | 306 页 | 3.19 MB | 1 年前3
PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2020.22)Alice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of a long note. end note @enduml can also be on several lines end note note "This note is connected\nto several objects." as N2 (Start) .. N2 N2 .. (Use) @enduml PlantUML 言語リファレンスガイド (1.2020.22) 33 / 293 2.9 ステレオタイプ 2 ユースケース図 2.9 ステレオタイプ every class\nextends this one. note "This is a floating note" as N1 note "This note is connected\nto several objects." as N2 Object .. N2 N2 .. ArrayList class Foo PlantUML 言語リファレンスガイド (1.2020.22) 44 /0 码力 | 294 页 | 3.11 MB | 1 年前3
PlantUML 1.2021.3 言語リファレンスガイドAlice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of PlantUML 言語リファレンスガイド (1.2021 note over Alice, Charlie: Old method for note over all part. with:\n ""note over //FirstPart, LastPart//"". note across: New method with:\n""note across"" Bob->Alice hnote across:Note across all part. @enduml で短い矢印を使用することができます。 @startuml ?-> Alice : ""?->""\n**short** to actor1 [-> Alice : ""[->""\n**from start** to actor1 [-> Bob : ""[->""\n**from start** to actor2 ?-> Bob : ""?->""\n**short** to actor2 Alice ->] : ""->]""\nfrom0 码力 | 412 页 | 4.46 MB | 1 年前3
Comprehensive Rust(日语) 20241214、-10.0e20、2_f32 Unicode スカラー値 char 'a'、' α '、' ∞' ブール値 bool true、false 各型の幅は次のとおりです。 • iN、uN、fN は N ビット幅です。 • isize と usize はポインタの幅です。 • char は 32 ビット幅です。 • bool は 8 ビット幅です。 29 上記には示されていない構文もあります。 [0,1]. For n>1, the n'th Fibonacci number is calculated recursively as the sum of the n-1'th and n-2'th Fibonacci numbers. n 番目のフィボナッチ数を計算する関数 fib(n) を記述します。この関数はいつパニックするでしょ うか。 fn fib(n: u32) -> u32 u32 { if n < 2 { // ベースケース。 todo!("ここを実装してください") } else { // 再帰的なケース。 todo!("ここを実装してください") } } fn main() { let n = 20; println!("fib({n}) = {}", fib(n)); } 5.6.1 解答 fn fib(n: u32) -> u32 { if0 码力 | 381 页 | 1.36 MB | 10 月前3
Debian リファレンス v2.124. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141 8 I18N と L10N 142 8.1 ロケール . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Alt-Tab はシェルファイル名の自動展開の選択肢を表示します。 • MC の引数で両ウィンドウのスタートディレクトリーを指定できます。例えば”mc /etc /root”。 • Esc + n-key → Fn (つまり、Esc + 1 → F1、等々、Esc + 0 → F10) • Esc をキーの前に押すのは Alt をキーと同時に押すのと同様の効果があります。つまり、Esc + c mcedit filename_to_edit これはマルチモードエディターではありませんが、複数の Linux コンソール上で使用すると同じ効果を発揮させ されます。ウィンドウ間のコピーを行うには、Alt-n キーを押して仮想コンソールを切替えて、”File→Insert file” や”File→Copy to file” を用いてファイルの一部を他のファイルに動かします。 この内部エディターはお好き0 码力 | 287 页 | 1.60 MB | 1 年前3
KiCad 8.0 Schematic Editordefined in this dialog can have unequal X and Y spacing as well as an optional name. Ctrl Shift n N 11 This dialog also lets you designate two grids from the list as "Fast Grids", which can be quickly "Key<123" (less than), etc. Numbers may include one of the following case-insensitive suffixes: p n u m k meg g t 10 10 10 10 10 10 10 10 ki mi gi ti 2 2 2 2 Regular expressions: if you’re familiar ベクトル バスは `[M..N]` と 名前が付けられ、ここで `PREFIX` は有効な信号名、 `M` は接尾辞で使われる最初の番号、 `N` は接尾辞で使われる最後 の番号です。 例えば、バス `DATA[0..7]` は信号 `DATA0`, `DATA1`, … `DATA7` から構成されます。 指定される `M` と `N` は降順でも昇順でも構いませんが、ともに正の整数でなければなりません。 0 码力 | 194 页 | 7.86 MB | 1 年前3
PlantUML 1.2019.3 言語リファレンスガイドLong as "This is very\nlong" Long --> "Bob()" : ok @enduml 1.4 自分自身へのメッセージ 分類子は自分自身へメッセージを送信できます。 \n を使用して、複数行のテキストを扱えます。 @startuml Alice->Alice: This is a signal to self.\nIt also demonstrates\nmultiline Alice. note over Alice: This is displayed over Alice. note over Alice, Bob #FFAAAA: This is displayed\n over Bob and Alice. note over Bob, Alice This is yet another example of a long note. end note @enduml example Alice -> Bob: Authentication Request Bob -> Alice: Authentication Response @enduml タイトルの記述では \n を使用して新しい行を追加することができます。 @startuml PlantUML 言語リファレンスガイド (1.2019.3) 19 / 159 1.25 分類子の囲み 1 シーケンス図 title0 码力 | 160 页 | 1.80 MB | 1 年前3
共 20 条
- 1
- 2













