﻿{"id":81,"date":"2012-05-18T07:53:49","date_gmt":"2012-05-17T22:53:49","guid":{"rendered":"http:\/\/yucchi.jp\/blog\/?p=81"},"modified":"2013-04-24T23:13:12","modified_gmt":"2013-04-24T14:13:12","slug":"static-static-fantastic-vol-4","status":"publish","type":"post","link":"http:\/\/yucchi.jp\/blog\/?p=81","title":{"rendered":"static static Fantastic! vol.4"},"content":{"rendered":"<p><span style=\"font-size: medium;\">\u4eca\u56de\u3082 static static Fantastic! \u3060\u305c\uff01<\/span><\/p>\n<p><span style=\"font-size: medium;\">\u4eca\u56de\u3082\u306a\u3093\u3060\u3053\u306e\u4ed5\u69d8\u306f(\u309co\u309c; \u3068\u3044\u3046\u3082\u306e\u304c\u6700\u5f8c\u306b\u3042\u308a\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"font-size: medium;\">\u9593\u9055\u3063\u3066\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u8208\u5473\u306e\u3042\u308b\u65b9\u306f\u5b9f\u969b\u306b\u52d5\u304b\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002<\/span><\/p>\n<p><span style=\"font-size: medium;\">\u3067\u306f static \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u306b\u3064\u3044\u3066\u898b\u3066\u307f\u307e\u3057\u3087\u3046\u3002<\/span><\/p>\n<p><span style=\"font-size: medium;\">\u6b21\u306e\u30b3\u30fc\u30c9\u306f static \u30e1\u30bd\u30c3\u30c9\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u4f7f\u304a\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"font-size: medium;\">\u3057\u304b\u3057\u3001\u30e1\u30bd\u30c3\u30c9\u540d\u304c\u540c\u3058\u306a\u306e\u3067\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059\u3002<\/span><\/p>\n<style type=\"text\/css\"><!--\ntable {color: #000000; background-color: #e9e8e2; font-family: \u3086\u305f\u307d\u3093\uff08\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\uff09} -->\n--><\/style>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\hoge.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class hoge {\r\n\r\n    static void calc(int i) {\r\n        System.out.println(i + \"\uff0a \uff12 = \" + i * 2);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\chage.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class chage {\r\n\r\n    static void calc(int i) {\r\n        System.out.println(i + \"\uff0a \uff13 = \" + i * 3);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\Static_sample_4.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\nimport static jp.yucchi.static_sample_4.hoge.*;\r\nimport static jp.yucchi.static_sample_4.chage.*;\r\n\r\npublic class Static_sample_4 {\r\n\r\n    public static void main(String[] args) {\r\n        calc(100);\r\n    }\r\n}<\/pre>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u306a\u3093\u304b\u524d\u56de\u3068\u3088\u304f\u4f3c\u3066\u3044\u307e\u3059\u306d\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3063\u3066\u3053\u3068\u306f\u30fb\u30fb\u3000\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9\u3067\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u3084\u3081\u3066\u304d\u3063\u3061\u308a\u6307\u5b9a\u3057\u305f\u307b\u3046\u306e\u30e1\u30bd\u30c3\u30c9\u304c\u5b9f\u884c\u3055\u308c\u308b\u306b\u9055\u3044\u306a\u3044\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">Static_sample_4.java \u3092\u6b21\u306e\u3088\u3046\u306b\u5909\u66f4\u3057\u3066\u307f\u305f\u3002<\/span><\/p>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\nimport static jp.yucchi.static_sample_4.hoge.calc;\r\nimport static jp.yucchi.static_sample_4.chage.*;<\/pre>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30b3\u30f3\u30d1\u30a4\u30eb\u3055\u308c\u3061\u3083\u3093\u3068\u5b9f\u884c\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/span><\/p>\n<p>run:<br \/>\n100\uff0a \uff12 = 200<br \/>\n\u69cb\u7bc9\u6210\u529f (\u5408\u8a08\u6642\u9593: 0 \u79d2)<\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u7591\u308a\u6df1\u3044\u79c1\u306f\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u6b21\u306e\u3088\u3046\u9006\u306b\u5165\u308c\u66ff\u3048\u3066\u307f\u307e\u3057\u305f\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3053\u308c\u3067\u5b9f\u884c\u7d50\u679c\u304c 300 \u3068\u306a\u308c\u3070\u9593\u9055\u3044\u306a\u3044\u3002<\/span><\/p>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\nimport static jp.yucchi.static_sample_4.hoge.*;\r\nimport static jp.yucchi.static_sample_4.chage.calc;<\/pre>\n<p>run:<br \/>\n100\uff0a \uff13 = 300<br \/>\n\u69cb\u7bc9\u6210\u529f (\u5408\u8a08\u6642\u9593: 0 \u79d2)<\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u9593\u9055\u3044\u306a\u304b\u3063\u305f\u3002\u3081\u3067\u305f\u3057\u3001\u3081\u3067\u305f\u3057\u3001\u3068\u3053\u3053\u307e\u3067\u3060\u3063\u305f\u3089\u524d\u56de\u304b\u3089\u60f3\u50cf\u3055\u308c\u308b\u5185\u5bb9\u3060\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3067\u306f\u6b21\u306e\u30b3\u30fc\u30c9\u3067\u306f\u3069\u3046\u3060\u308d\u3046\uff1f(\u540c\u3058\u3058\u3083\u306a\u3044\u304b\u3088\uff01\uff09<\/span><\/p>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\hoge.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class hoge {\r\n\r\n    static void calc(int i) {\r\n        System.out.println(i + \"\uff0a \uff12 = \" + i * 2);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\chage.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class chage {\r\n\r\n    static void calc(int i) {\r\n        System.out.println(i + \"\uff0a \uff13 = \" + i * 3);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\Static_sample_4.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\nimport static jp.yucchi.static_sample_4.hoge.*;\r\nimport static jp.yucchi.static_sample_4.chage.*;\r\n\r\npublic class Static_sample_4 {\r\n\r\n    public static void main(String[] args) {\r\n        calc(100);\r\n    }\r\n}<\/pre>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc\uff01<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">calc() \u30e1\u30bd\u30c3\u30c9\u304c\u3069\u3061\u3089\u3092\u4f7f\u3048\u3070\u3044\u3044\u306e\u304b\u89e3\u3089\u306a\u3044\u304b\u3089\u3067\u3059\u3088\u306d\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u5148\u8ff0\u306e\u3088\u3046\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u6587\u3092\u5909\u66f4\u3059\u308c\u3070\u89e3\u6c7a\u3067\u304d\u308b\u306e\u3067\u3059\u304c\u4eca\u56de\u306f\u3061\u3087\u3063\u3068\u9055\u3063\u305f\u307f\u304b\u305f\u3092\u3057\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">calc() \u30e1\u30bd\u30c3\u30c9\u306e\u5f15\u6570\u3092\u5909\u66f4\u3057\u3066\u307f\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30e1\u30bd\u30c3\u30c9\u30aa\u30fc\u30d0\u30fc\u30ed\u30fc\u30c9\u3067\u89e3\u6c7a\u3067\u304d\u308b\u304b\u8a66\u3057\u3066\u307f\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u6b21\u306e\u3088\u3046\u306b\u30b3\u30fc\u30c9\u3092\u5909\u66f4\u3057\u307e\u3059\u3002<\/span><\/p>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\chage.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class chage {\r\n\r\n    static void calc(long i) {\r\n        System.out.println(i + \"\uff0a \uff13 = \" + i * 3);\r\n    }\r\n}<\/pre>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3053\u306e\u3088\u3046\u306b chage \u30af\u30e9\u30b9\u306e calc() \u3081\u305d\u3063\u3069\u306e\u5f15\u6570\u3092 long \u306b\u5909\u66f4\u3057\u3066\u307f\u307e\u3057\u305f\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">main() \u30e1\u30bd\u30c3\u30c9\u304b\u3089\u547c\u3070\u308c\u308b calc() \u30e1\u30bd\u30c3\u30c9\u306e\u5f15\u6570\u306f int \u306a\u306e\u3067\u3053\u308c\u3067\u3044\u3051\u308b\u306f\u305a\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3055\u3066\u3001\u3069\u3046\u3067\u3057\u3087\u3046\uff1f<\/span><\/p>\n<p>run:<br \/>\n100\uff0a \uff12 = 200<br \/>\n\u69cb\u7bc9\u6210\u529f (\u5408\u8a08\u6642\u9593: 1 \u79d2)<\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30b3\u30f3\u30d1\u30a4\u30eb\u3082\u5b9f\u884c\u3082\u554f\u984c\u306a\u3044\u3067\u3059\u306d\uff08\uff3e\uff3e\uff09<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u7591\u308a\u6df1\u3044\u79c1\u306f\u6b21\u306e\u3088\u3046\u306b calc() \u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u3092 long \u3067\u3084\u3063\u3066\u307f\u307e\u3057\u305f\u3002<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30b3\u30f3\u30d1\u30a4\u30eb\u3001\u5b9f\u884c\u304c\u3061\u3083\u3093\u3068\u3067\u304d\u308b\u3067\u3057\u3087\u3046\u304b\uff1f<\/span><\/p>\n<pre>public static void main(String[] args) {\r\n    calc(100L);\r\n}<\/pre>\n<p>run:<br \/>\n100\uff0a \uff13 = 300<br \/>\n\u69cb\u7bc9\u6210\u529f (\u5408\u8a08\u6642\u9593: 0 \u79d2)<\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u554f\u984c\u306a\u3044\u3067\u3059\u306d\u3002\u3070\u3063\u3061\u308aOK\u3067\u3059\u3002<\/span><\/p>\n<p><span style=\"font-size: medium;\"><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa;\">\u3067\u306f\u3001\u6700\u5f8c\u306b\u9762\u767d\u3044\u30b3\u30fc\u30c9\u3092\uff08\uff3e\uff3e\uff09<\/span><\/span><\/p>\n<p><span style=\"font-size: medium;\"><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa;\">\u3086\u3063\u304f\u308a\u753b\u9762\u3092\u30b9\u30af\u30ed\u30fc\u30eb\u3055\u305b\u3066\u3069\u3046\u306a\u308b\u304b\u8003\u3048\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002<\/span><\/span><\/p>\n<p><span style=\"font-size: medium;\"><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa;\">\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u52d5\u4f5c\u304c\u7406\u89e3\u3067\u304d\u305f\u3089\u3042\u306a\u305f\u306f static import \u3092\u826f\u304f\u7406\u89e3\u3067\u304d\u3066\u3044\u308b\u3067\u3057\u3087\u3046\u3002<\/span><\/span><\/p>\n<p>&nbsp;<\/p>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\hoge.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class hoge {\r\n\r\n    static int VAL = 10000;\r\n\r\n    static void calc(int i) {\r\n        System.out.println(VAL + \"\uff0a \uff12 = \" + VAL * 2);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\chage.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\npublic class chage {\r\n\r\n    static int VAL = 1;\r\n\r\n    static void calc(int i) {\r\n        System.out.println(VAL + \"\uff0a \uff12 = \" + VAL * 2);\r\n    }\r\n}<\/pre>\n<table width=\"100%\">\n<tbody>\n<tr>\n<td align=\"left\">jp\\yucchi\\static_sample_4\\Static_sample_4.java<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre>package jp.yucchi.static_sample_4;\r\n\r\nimport static jp.yucchi.static_sample_4.hoge.*;\r\nimport static jp.yucchi.static_sample_4.chage.VAL;\r\n\r\npublic class Static_sample_4 {\r\n\r\n    public static void main(String[] args) {\r\n        calc(VAL);\r\n    }\r\n}<\/pre>\n<p>run:<br \/>\n10000\uff0a \uff12 = 20000<br \/>\n\u69cb\u7bc9\u6210\u529f (\u5408\u8a08\u6642\u9593: 0 \u79d2)<\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u30b3\u30f3\u30d1\u30a4\u30eb\u3082\u5b9f\u884c\u3082\u3055\u308c\u307e\u3059\u3002<\/span><\/p>\n<p><span style=\"color: #ff0000; font-family: \u30e1\u30a4\u30ea\u30aa; font-size: large;\"><strong>calc() \u30e1\u30bd\u30c3\u30c9\u306e\u5f15\u6570\u306f int \u3067\u540c\u3058\u306a\u306e\u306b\u306d(\u309co\u309c;<\/strong><\/span><\/p>\n<p><span style=\"color: #000000; font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">\u3067\u3082\u3001\u5b9f\u884c\u7d50\u679c\u304c\u30fb\u30fb\u30fb<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa; font-size: medium;\">chage \u30af\u30e9\u30b9\u306e VAL \u304c\u512a\u5148\u3055\u308c\u308b\u304b\u3089\u5b9f\u884c\u7d50\u679c\u306f 2 \u3068\u306a\u308b\u3068\u601d\u3063\u3066\u3044\u305f\u3002<\/span><\/p>\n<p><span style=\"color: #ff0000; font-family: \u30e1\u30a4\u30ea\u30aa; font-size: x-large;\">static import \u5965\u304c\u6df1\u3044\u305c\uff01<\/span><\/p>\n<p><span style=\"font-family: \u30e1\u30a4\u30ea\u30aa;\"><span style=\"color: #000000; font-size: medium;\">\u8ab0\u304b\u8a73\u3057\u304f\u512a\u3057\u304f\u8aac\u660e\u3057\u3066\u304a\u304f\u308c\uff5e<\/span><\/span><\/p>\n<div class=\"wlWriterEditableSmartContent\" id=\"scid:0767317B-992E-4b12-91E0-4F059A8CECA8:893c508c-a867-4401-b15c-df8dcab3fb74\" style=\"margin: 0px; padding: 0px; float: none; display: inline;\">Hatena \u30bf\u30b0: <a href=\"http:\/\/b.hatena.ne.jp\/t\/Java\" rel=\"tag\">Java<\/a><\/div>\n<p>&nbsp;<\/p>\n<div class='wp_social_bookmarking_light'>\n            <div class=\"wsbl_hatena\"><a href='\/\/b.hatena.ne.jp\/add?mode=confirm&url=http%3A%2F%2Fyucchi.jp%2Fblog%2F%3Fp%3D81&title=static%20static%20Fantastic%21%20vol.4' title='\u3053\u306e\u30a8\u30f3\u30c8\u30ea\u30fc\u3092\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306b\u8ffd\u52a0' rel=nofollow class='wp_social_bookmarking_light_a' target=_blank><img src='http:\/\/yucchi.jp\/blog\/wp-content\/plugins\/wp-social-bookmarking-light\/public\/images\/hatena.gif' alt='\u3053\u306e\u30a8\u30f3\u30c8\u30ea\u30fc\u3092\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306b\u8ffd\u52a0' title='\u3053\u306e\u30a8\u30f3\u30c8\u30ea\u30fc\u3092\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306b\u8ffd\u52a0' width='16' height='12' class='wp_social_bookmarking_light_img' \/><\/a><\/div>\n            <div class=\"wsbl_facebook\"><a href='http:\/\/www.facebook.com\/share.php?u=http%3A%2F%2Fyucchi.jp%2Fblog%2F%3Fp%3D81&t=static%20static%20Fantastic%21%20vol.4' title='Facebook \u306b\u30b7\u30a7\u30a2' rel=nofollow class='wp_social_bookmarking_light_a' target=_blank><img src='http:\/\/yucchi.jp\/blog\/wp-content\/plugins\/wp-social-bookmarking-light\/public\/images\/facebook.png' alt='Facebook \u306b\u30b7\u30a7\u30a2' title='Facebook \u306b\u30b7\u30a7\u30a2' width='16' height='16' class='wp_social_bookmarking_light_img' \/><\/a><\/div>\n            <div class=\"wsbl_google_plus_one\"><g:plusone size=\"medium\" annotation=\"none\" href=\"http:\/\/yucchi.jp\/blog\/?p=81\" ><\/g:plusone><\/div>\n            <div class=\"wsbl_twitter\"><a href=\"https:\/\/twitter.com\/share\" class=\"twitter-share-button\" data-url=\"http:\/\/yucchi.jp\/blog\/?p=81\" data-text=\"static static Fantastic! vol.4\" data-lang=\"ja\">Tweet<\/a><\/div>\n    <\/div>\n<br class='wp_social_bookmarking_light_clear' \/>\n","protected":false},"excerpt":{"rendered":"<p>\u4eca\u56de\u3082 static static Fantastic! \u3060\u305c\uff01 \u4eca\u56de\u3082\u306a\u3093\u3060\u3053\u306e\u4ed5\u69d8\u306f(\u309co\u309c; \u3068\u3044\u3046\u3082\u306e\u304c\u6700\u5f8c\u306b\u3042\u308a\u307e\u3059\u3002 \u9593\u9055\u3063\u3066\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u8208\u5473\u306e\u3042\u308b\u65b9\u306f\u5b9f\u969b\u306b\u52d5\u304b\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002 \u3067\u306f static \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u306b\u3064\u3044\u3066\u898b\u3066\u307f\u307e\u3057\u3087\u3046\u3002 \u6b21\u306e\u30b3\u30fc\u30c9\u306f static \u30e1\u30bd\u30c3\u30c9\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u4f7f\u304a\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002 \u3057\u304b\u3057\u3001\u30e1\u30bd\u30c3\u30c9\u540d\u304c\u540c\u3058\u306a\u306e\u3067\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059\u3002 jp\\yucchi\\static_sample_4\\hoge.java package jp.yucchi.static_sample_4; public class hoge { static vo\u2026<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[17],"class_list":["post-81","post","type-post","status-publish","format-standard","hentry","category-java","tag-java"],"_links":{"self":[{"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/81","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=81"}],"version-history":[{"count":4,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/81\/revisions"}],"predecessor-version":[{"id":857,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/81\/revisions\/857"}],"wp:attachment":[{"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=81"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=81"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/yucchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=81"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}