Skip to content

Commit 5a8a2cd

Browse files
committed
Translate a paragraph
1 parent 60f8439 commit 5a8a2cd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/subtyping.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,19 @@ confusion, because it seems intuitively backwards to many: the bigger scope is a
2929
多くの人にとっては、
3030
この関係は直感的に逆のように感じるからです: より大きいスコープは小さい方のスコープの*派生型*となる。
3131

32+
<!--
3233
This does in fact make sense, though. The intuitive reason for this is that if
3334
you expect an `&'a u8`, then it's totally fine for me to hand you an `&'static
3435
u8`, in the same way that if you expect an Animal in Java, it's totally fine for
3536
me to hand you a Cat. Cats are just Animals *and more*, just as `'static` is
3637
just `'a` *and more*.
38+
-->
39+
40+
それでもこれは実際、理にかなっています。
41+
Java において、 Animal が期待される場合に Cat を渡しても問題ないのと全く同じように、
42+
もし `&'a u8` が期待される時、 `&'static u8` を渡しても問題ないということが
43+
これに対する直感的な理由になります。 `'static``'a` *以上*のものであるように、
44+
Cat も Animal *以上*のものであるからです。
3745

3846
(Note, the subtyping relationship and typed-ness of lifetimes is a fairly
3947
arbitrary construct that some disagree with. However it simplifies our analysis

0 commit comments

Comments
 (0)