マークダウンで書いて投稿
stackedit.ioというサイトを使うとBloggerにMarkdownで書いて投稿できるらしいので試してみるテスト。
stackedit.ioというサイトを使うとBloggerにMarkdownで書いて投稿できるらしいので試してみるテスト。
4.4 Message Length
The transfer-length of a message is the length of the message-body as it appears in the message; that is, after any transfer-codings have been applied. When a message-body is included with a message, the transfer-length of that body is determined by one of the following (in order of precedence):
- snip -
5.By the server closing the connection. (Closing the connection cannot be used to indicate the end of a request body, since that would leave no possibility for the server to send back a response.)
# brew install fontconfigMBPにRictyフォント入れようとおもったらコマンドが見つからず。
public class SampleChild extends SampleParent { public static void main(String[] args) { new SampleChild().hi(); } @Override public void say() { System.out.println("Child#say"); super.say(); } @Override public void hi() { System.out.println("Child#hi"); super.hi(); } }次に親クラス。
public class SampleParent { public void say() { System.out.println("Parent#say"); } public void hi() { this.say(); } }これで、SampleChild#hi() を呼ぶとする。