{"id":464,"date":"2019-05-30T23:27:01","date_gmt":"2019-05-30T14:27:01","guid":{"rendered":"https:\/\/dalomo.net\/blog\/?p=464"},"modified":"2019-05-30T23:27:01","modified_gmt":"2019-05-30T14:27:01","slug":"%e3%81%98%e3%82%83%e3%82%93%e3%81%91%e3%82%93%e3%82%a2%e3%83%97%e3%83%aa%e8%89%b2%e3%80%85","status":"publish","type":"post","link":"https:\/\/dalomo.net\/blog\/2019\/05\/30\/464\/","title":{"rendered":"\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea\u8272\u3005"},"content":{"rendered":"<h1>\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea<\/h1>\n<p>\u672c\u3092\u8aad\u3093\u3067\u3044\u305f\u3089\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea\u306e\u6c7a\u5b9a\u8868\u3092\u7528\u3044\u305f\u5b9f\u88c5\u65b9\u6cd5\u304c\u8f09\u3063\u3066\u3044\u305f\u3002\u76ee\u304b\u3089\u30a6\u30ed\u30b3\u3060\u3063\u305f\u306e\u3067\u66f8\u3044\u3066\u307f\u305f\u304f\u306a\u3063\u305f\u3002\u521d\u5b66\u8005\u306b\u6559\u80b2\u3059\u308b\u6d41\u308c\u3068\u3057\u3066\u3088\u304f\u4f7f\u308f\u308c\u308b\u3089\u3057\u3044\u306e\u3067\u5468\u77e5\u306e\u7269\u307f\u305f\u3044\u3060\u3051\u3069\u3002<\/p>\n<p>\u95a2\u4fc2\u306a\u3044\u3051\u3069\u65b0\u3057\u304f\u30a2\u30d7\u30ea\u4f5c\u308d\u3046\u3068\u3057\u305f\u3089\u9078\u629e\u8a00\u8a9e\u3067Kotlin\u304c\u4e0a\u306b\u6765\u3066\u305f\u3002\u3002\u3002\u521d\u3081\u304b\u3089Kotlin\u4f7f\u3063\u3066\u308c\u3070\u3088\u304b\u3063\u305f\u306a\u3002<\/p>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-465\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps-300x215.png\" alt=\"\" width=\"300\" height=\"215\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps-300x215.png 300w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps-768x550.png 768w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps.png 902w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<h2>if\u3067\u6761\u4ef6\u5206\u5c90\u3057\u305f\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea<\/h2>\n<p>\u666e\u901a\u306e\u3001\u3068\u3044\u3046\u3068\u3061\u3087\u3063\u3068\u8a9e\u5f0a\u304c\u3042\u308b\u3051\u308c\u3069\u3001if\u3067\u6761\u4ef6\u5206\u5c90\u3059\u308b\u3084\u3064\u3092\u611a\u76f4\u306b\u66f8\u3044\u3066\u307f\u308b\u3002<\/p>\n<pre>public class RPS3Activity extends AppCompatActivity {\r\n    TextView result;\r\n    TextView ophand;\r\n    static final int ROCK = 0;\r\n    static final int SCISSORS = 1;\r\n    static final int PAPER = 2;\r\n\r\n    @Override\r\n    protected void onCreate(Bundle savedInstanceState) {\r\n        super.onCreate(savedInstanceState);\r\n        setContentView(R.layout.activity_rps3);\r\n\r\n        result = findViewById(R.id.ResulttextView);\r\n        ophand = findViewById(R.id.OpponentHandtextView);\r\n\r\n    }\r\n\r\n    public void onClick(View v) {\r\n        Random rand = new Random();\r\n        int num = rand.nextInt(3);\r\n\r\n        switch (v.getId()) {\r\n            case R.id.btRock:\r\n                if (num == ROCK) {\r\n                    ophand.setText(R.string.rock);\r\n                    result.setText(R.string.draw);\r\n                } else if (num == SCISSORS) {\r\n                    ophand.setText(R.string.scissors);\r\n                    result.setText(R.string.win);\r\n                } else if (num == PAPER) {\r\n                    ophand.setText(R.string.paper);\r\n                    result.setText(R.string.lose);\r\n                }\r\n                break;\r\n\r\n            case R.id.btScissors:\r\n                if (num == ROCK) {\r\n                    ophand.setText(R.string.rock);\r\n                    result.setText(R.string.lose);\r\n                } else if (num == SCISSORS) {\r\n                    ophand.setText(R.string.scissors);\r\n                    result.setText(R.string.draw);\r\n                } else if (num == PAPER) {\r\n                    ophand.setText(R.string.paper);\r\n                    result.setText(R.string.win);\r\n                }\r\n                break;\r\n\r\n            case R.id.btPaper:\r\n                if (num == ROCK) {\r\n                    ophand.setText(R.string.rock);\r\n                    result.setText(R.string.win);\r\n                } else if (num == SCISSORS) {\r\n                    ophand.setText(R.string.scissors);\r\n                    result.setText(R.string.lose);\r\n                } else if (num == PAPER) {\r\n                    ophand.setText(R.string.paper);\r\n                    result.setText(R.string.draw);\r\n                }\r\n                break;\r\n        }\r\n    }\r\n}<\/pre>\n<p>\u3053\u3093\u306a\u306a\u3063\u305f\u3002\u540c\u3058\u3088\u3046\u306a\u30b3\u30fc\u30c9\u304c\u4e26\u3093\u3067\u308b\u306d\u3063\u3068\u3002<\/p>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-469\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707-150x300.png\" alt=\"\" width=\"150\" height=\"300\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707-150x300.png 150w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707-768x1533.png 768w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707-513x1024.png 513w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/Screenshot_20190528-001707.png 1080w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/><\/a><\/p>\n<p>\u3053\u308c\u3067\u3082\u4e00\u5fdc\u52d5\u304f\u306f\u52d5\u304f\u3002<\/p>\n<h2>\u914d\u5217\u3092\u4f7f\u3063\u305f\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea<\/h2>\n<p>\u307b\u3093\u3067\u914d\u5217\u4f7f\u3063\u305f\u3084\u3064\u3002<\/p>\n<pre>public class RPS3Activity extends AppCompatActivity {\r\n    TextView result;\r\n    TextView ophand;\r\n    int[] ihand = {R.string.rock, R.string.scissors, R.string.paper};\r\n    int[][] judge = {\r\n            {R.string.draw, R.string.win, R.string.lose},\r\n            {R.string.lose, R.string.draw, R.string.win},\r\n            {R.string.win, R.string.lose, R.string.draw}\r\n    };\r\n\r\n    @Override\r\n    protected void onCreate(Bundle savedInstanceState) {\r\n        super.onCreate(savedInstanceState);\r\n        setContentView(R.layout.activity_rps3);\r\n\r\n        result = findViewById(R.id.ResulttextView);\r\n        ophand = findViewById(R.id.OpponentHandtextView);\r\n    }\r\n\r\n    public void onClick(View v) {\r\n        Random rand = new Random();\r\n        int num = rand.nextInt(3);\r\n        int hand = HandtoInt(v);\r\n\r\n        result.setText(judge[hand][num]);\r\n        ophand.setText(ihand[num]);\r\n    }\r\n\r\n    public int HandtoInt(View v) {\r\n        int rt = 0;\r\n\r\n        switch (v.getId()) {\r\n            case R.id.btRock:\r\n                rt = 0;\r\n                break;\r\n            case R.id.btScissors:\r\n                rt = 1;\r\n                break;\r\n            case R.id.btPaper:\r\n                rt = 2;\r\n                break;\r\n        }\r\n        return rt;\r\n    }\r\n}<\/pre>\n<p>\u4e88\u3081\u7d50\u679c\u306e\u8868<\/p>\n<table width=\"298\">\n<tbody>\n<tr>\n<td width=\"23\"><\/td>\n<td width=\"20\"><\/td>\n<td width=\"48\"><\/td>\n<td style=\"text-align: center;\" colspan=\"3\" width=\"207\">\u76f8\u624b\u306e\u624b<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<td><\/td>\n<td style=\"text-align: center;\">0<\/td>\n<td style=\"text-align: center;\">1<\/td>\n<td style=\"text-align: center;\">2<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<td><\/td>\n<td style=\"text-align: center;\">\u30b0\u30fc<\/td>\n<td style=\"text-align: center;\">\u30c1\u30e7\u30ad<\/td>\n<td style=\"text-align: center;\">\u30d1\u30fc<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\" rowspan=\"3\">\u81ea\u5206\u306e\u624b<\/td>\n<td style=\"text-align: center;\">0<\/td>\n<td style=\"text-align: center;\">\u30b0\u30fc<\/td>\n<td style=\"text-align: center;\">\u5f15\u304d\u5206\u3051<\/td>\n<td style=\"text-align: center;\">\u52dd\u3061<\/td>\n<td style=\"text-align: center;\">\u8ca0\u3051<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">1<\/td>\n<td style=\"text-align: center;\">\u30c1\u30e7\u30ad<\/td>\n<td style=\"text-align: center;\">\u8ca0\u3051<\/td>\n<td style=\"text-align: center;\">\u5f15\u304d\u5206\u3051<\/td>\n<td style=\"text-align: center;\">\u52dd\u3061<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">2<\/td>\n<td style=\"text-align: center;\">\u30d1\u30fc<\/td>\n<td style=\"text-align: center;\">\u52dd\u3061<\/td>\n<td style=\"text-align: center;\">\u8ca0\u3051<\/td>\n<td style=\"text-align: center;\">\u5f15\u304d\u5206\u3051<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u3053\u3046\u3044\u3046\u306e\u3001\u3092\u3001\u914d\u5217\u3068\u3057\u3066\u4f5c\u3063\u3066\u304a\u304d\u3001\u3069\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u304b\u3092\u6570\u5024\u5316\u3057\u3066\u3001\u305d\u306e\u6570\u5024\u3092\u914d\u5217\u306e\u6dfb\u5b57\u306b\u3057\u3066\u7d50\u679c\u3092\u5f15\u3063\u5f35\u308a\u51fa\u3059\u3002\u8003\u3048\u305f\u4eba\u982d\u3044\uff5e\u306d\u3002<\/p>\n<h2>\u8a08\u7b97\u3067\u7d50\u679c\u3092\u6c42\u3081\u308b\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea<\/h2>\n<p>\u8868\u3092\u4f7f\u308f\u305a\u306b\u3001\u51fa\u3057\u624b\u306e\u6570\u5024\u304b\u3089\u8a08\u7b97\u3057\u3066\u52dd\u5229\u5224\u5b9a\u3059\u308b\u3084\u3064\u3002\u672c\u306b\u306f\u8f09\u3063\u3066\u306a\u304b\u3063\u305f\u3051\u3069\u3001\u3058\u3083\u3093\u3051\u3093\u3067\u4ed6\u306b\u306a\u3093\u304b\u306a\u3044\u304b\u306a\u3068\u30cd\u30c3\u30c8\u3067\u63a2\u3057\u3066\u305f\u3089\u898b\u3064\u3051\u305f\u3002<\/p>\n<pre>public class RPS3Activity extends AppCompatActivity {\r\n    TextView result;\r\n    TextView ophand;\r\n    int[] ihand = {R.string.rock, R.string.scissors, R.string.paper};\r\n    int[] judge = {R.string.draw, R.string.lose, R.string.win};\r\n\r\n    @Override\r\n    protected void onCreate(Bundle savedInstanceState) {\r\n        super.onCreate(savedInstanceState);\r\n        setContentView(R.layout.activity_rps3);\r\n\r\n        result = findViewById(R.id.ResulttextView);\r\n        ophand = findViewById(R.id.OpponentHandtextView);\r\n    }\r\n\r\n    public void onClick(View v) {\r\n        Random rand = new Random();\r\n        int num = rand.nextInt(3);\r\n        int hand = HandtoInt(v);\r\n\r\n        int res = (hand - num + 3) % 3;\r\n\r\n        result.setText(judge[res]);\r\n        ophand.setText(ihand[num]);\r\n    }\r\n\r\n    public int HandtoInt(View v) {\r\n        int rt = 0;\r\n\r\n        switch (v.getId()) {\r\n            case R.id.btRock:\r\n                rt = 0;\r\n                break;\r\n            case R.id.btScissors:\r\n                rt = 1;\r\n                break;\r\n            case R.id.btPaper:\r\n                rt = 2;\r\n                break;\r\n        }\r\n        return rt;\r\n    }\r\n}<\/pre>\n<p>\u3053\u3046\u3059\u308b\u3068\u3082\u3046\u8868\u3082\u3044\u3089\u306a\u304f\u306a\u308b\u3002\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u91cf\u304c\u3081\u3063\u3061\u3083\u6e1b\u3063\u3066\u308b\u306e\u304c\u304b\u3063\u3053\u3044\u3044\u3002\u3053\u3046\u3044\u3046\u30b3\u30fc\u30c9\u30921\u304b\u3089\u30d1\u30c3\u3068\u66f8\u3051\u308b\u3068\u304b\u3063\u3053\u3044\u3044\u306a\u3041\u3002<\/p>\n<h2>RPS-101\u3001\u3058\u3083\u3093\u3051\u3093\u306e\u3059\u3054\u3044\u3084\u3064<\/h2>\n<p>\u3058\u3083\u3093\u3051\u3093\u306e\u3053\u3068\u3092\u8272\u3005\u63a2\u3057\u3066\u3044\u305f\u3089RPS-101\u3068\u3044\u3046\u306e\u3092\u898b\u3064\u3051\u305f\u3002<\/p>\n<p><a href=\"http:\/\/www.umop.com\/rps101\/rps101chart.html\">http:\/\/www.umop.com\/rps101\/rps101chart.html<\/a><\/p>\n<p>101\u624b\u3042\u308b\u3002\u305d\u306e\u524d\u306b5\u624b\u306e\u3084\u3064\u306f\u3082\u3046<a href=\"http:\/\/www.samkass.com\/theories\/RPSSL.html\">\u3042\u3063\u3066<\/a>\u3053\u306e\u30b5\u30a4\u30c8\u306e\u4eba\u306f7, 9, 11, 15, 25\u3092\u4f5c\u3063\u3066\u3001101\u624b\u3082\u4f5c\u3063\u3061\u3083\u3063\u305f\u3068\u3044\u3046\u3053\u3068\u307f\u305f\u3044\u3002\u304a\u30fc\u3002\u305b\u3063\u304b\u304f\u306a\u306e\u3067\u4f5c\u3063\u3066\u307f\u3088\u3046\u304b\u306a\u3002<\/p>\n<h3>\u4ed5\u7d44\u307f\u3092\u898b\u308b<\/h3>\n<p>\u4e0a\u8a18\u30da\u30fc\u30b8\u306e\u5de6\u4e0a\u306e\u65b9\u306b\u30c1\u30e3\u30fc\u30c8\u306e\u898b\u65b9\u304c\u8f09\u3063\u3066\u304a\u308a\u8aad\u3093\u3067\u307f\u308b\u30681\u306f2-51\u306b\u52dd\u3064\u30022\u306f3-52\u306b\u52dd\u3064\u3002\u4ee5\u4e0b101\u306f1-51\u306b\u52dd\u3064\u3001\u307e\u3067\u3002\u3042\u3068\u52dd\u5229\u306e\u969b\u306e\u6587\u8a00\u304c\u305d\u308c\u305e\u308c\u306b\u7528\u610f\u3055\u308c\u3066\u308b\u3002\u4f8b\u3048\u30701\u306e\u30c0\u30a4\u30ca\u30de\u30a4\u30c8\u306f<\/p>\n<blockquote><p>OUTCLASSES TORNADO<br \/>\nCLEARS QUICKSAND<br \/>\nCREATES PIT<br \/>\nEXPLODES CHAIN<br \/>\nOUTCLASSES GUN<br \/>\nBREAKS LAW<br \/>\nEXPLODES WHIP<br \/>\nEXPLODES SWORD<br \/>\nEXPLODES ROCK<br \/>\nCAUSES DEATH<br \/>\nEXPLODES WALL<br \/>\nSMOKE BLOTS OUT SUN<\/p><\/blockquote>\n<p>\u3068\u3001\u76f8\u624b\u306b\u3088\u3063\u3066\u52dd\u5229\u6587\u8a00\u3092\u5909\u3048\u3066\u308b\u3088\u3046\u3060\u3002<span class=\"strike\">\u4f59\u8a08\u306a\u3053\u3068\u3092\u3002<\/span>\u51dd\u3063\u3066\u308b\u306d\u3002\u52dd\u5229\u5224\u5b9a\u90e8\u5206\u306f\u3059\u3050\u3067\u304d\u305d\u3046\u306a\u306e\u3067\u3001\u6587\u8a00\u3092\u96c6\u3081\u3088\u3046\u3002<\/p>\n<h3>ExcelVBA+IE\u3067\u30b9\u30af\u30ec\u30a4\u30d4\u30f3\u30b0<\/h3>\n<p>\u30b9\u30af\u30ec\u30a4\u30d4\u30f3\u30b0\u306f\u8272\u3093\u306a\u65b9\u6cd5\u304c\u3042\u308b\u3051\u3069\u3001\u3053\u308c\u3057\u304b\u77e5\u3089\u3093\u306e\u3067\u3001\u3053\u308c\u3067\u3044\u304f\u3002<\/p>\n<p><a href=\"http:\/\/www.umop.com\/rps101\/alloutcomes.htm\">http:\/\/www.umop.com\/rps101\/alloutcomes.htm<\/a><\/p>\n<p>\u3053\u3053\u306b\u6587\u8a00\u306e\u4e00\u89a7\u304c\u3042\u308b\u306e\u3067\u53d6\u3063\u3066\u3053\u3088\u3046\u3002\u305d\u3046\u3044\u3048\u3070\u3001Windows10\u306b\u3057\u3066\u304b\u3089\u3084\u3063\u3066\u306d\u30fc\u306a\u3001Edge\u306b\u306a\u3063\u305f\u3051\u3069\u3067\u304d\u308b\u306e\u304b\u306a\uff1f<\/p>\n<pre class=\"VBA\">Sub rps()\r\n \r\n    Dim objIE As InternetExplorer\r\n    Set objIE = New InternetExplorer\r\n     \r\n    objIE.Visible = True\r\n    objIE.navigate \"http:\/\/www.umop.com\/rps101\/alloutcomes.htm\"\r\n    \r\n    Do While objIE.Busy = True Or objIE.readyState &lt; READYSTATE_COMPLETE\r\n    DoEvents\r\n    Loop\r\n    \r\n    Dim htmlDoc As HTMLDocument\r\n    Set htmlDoc = objIE.document\r\n    \r\n    Dim b As IHTMLElementCollection\r\n    Set b = htmlDoc.getElementsByTagName(\"b\")\r\n    \r\n    For i = 0 To 100\r\n        Cells(1, i + 1).Value = b(i).innerText\r\n    Next i\r\n    \r\n    Dim table As IHTMLElementCollection\r\n    Set table = htmlDoc.getElementsByTagName(\"table\")\r\n    \r\n    For j = 0 To 100\r\n    \r\n        Dim td As IHTMLElementCollection\r\n        Set td = table(j).getElementsByTagName(\"td\")\r\n    \r\n        Cells(2, j + 1).Value = td(0).innerText\r\n        Cells(3, j + 1).Value = td(1).innerText\r\n        Cells(4, j + 1).Value = td(2).innerText\r\n        Cells(5, j + 1).Value = td(3).innerText\r\n    \r\n    Next j\r\n\r\nEnd Sub\r\n<\/pre>\n<p>\u3053\u3093\u306a\u611f\u3058\u3067\u30b3\u30fc\u30c9\u3092\u66f8\u3044\u305f\u3002Win10\u306b\u3082IE\u3042\u308b\u306e\u306d\u3002\u3059\u308b\u3068\u3053\u3093\u306a\u611f\u3058\u306b\u306a\u308b\u3002<\/p>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-476\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2-300x162.png\" alt=\"\" width=\"300\" height=\"162\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2-300x162.png 300w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2-768x416.png 768w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2-1024x554.png 1024w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps2.png 1360w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u3046\u307e\u304f1\u884c\u305a\u3064\u53d6\u308c\u3093\u304b\u3063\u305f\u3002<\/p>\n<h3>\u3082\u3046\u3061\u3087\u3044\u6574\u5f62<\/h3>\n<p>\u3053\u3093\u306a\u30b3\u30fc\u30c9\u3092\u66f8\u3044\u3066<\/p>\n<pre class=\"VBA\">Sub splitcell()\r\n\r\n    Dim arw As Variant\r\n    \r\n    For k = 1 To 101\r\n        For i = 2 To 5\r\n            arw = Split(Cells(i, k).Value, vbLf)\r\n            \r\n            rc = Cells(Rows.Count, k).End(xlUp).Row + 1\r\n            \r\n            For j = 0 To UBound(arw)\r\n                Cells(rc + j, k).Value = Trim(Replace(arw(j), Chr(32), \" \"))\r\n            Next j\r\n        Next i\r\n    Next k\r\n\r\nEnd Sub<\/pre>\n<p>\u591a\u91cdFor\u3092\u66f8\u304f\u3068\u5fc3\u304c\u75db\u3080\u3051\u3069\u3053\u308c\u3057\u304b\u5206\u304b\u3089\u3093\u3002\u3053\u3046\u306a\u308b\u3002<\/p>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-477\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3-300x163.png\" alt=\"\" width=\"300\" height=\"163\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3-300x163.png 300w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3-768x417.png 768w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3-1024x556.png 1024w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2019\/05\/rps3.png 1360w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u3053\u3053\u307e\u3067\u3084\u3063\u3066\u3001\u3042\u308c?\u3053\u308c\u4f5c\u3063\u305f\u3068\u3053\u308d\u3067\u3069\u3046\u3084\u3063\u3066\u30a2\u30d7\u30ea\u3067\u6271\u3046\u3093\u3060?\u3068\u306a\u308b\u3002<\/p>\n<p>\u9577\u304f\u306a\u308a\u305d\u3046\u306a\u306e\u3067\u3001\u3061\u3087\u3068\u8a18\u4e8b\u5206\u3051\u3088\u3046\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea \u672c\u3092\u8aad\u3093\u3067\u3044\u305f\u3089\u3058\u3083\u3093\u3051\u3093\u30a2\u30d7\u30ea\u306e\u6c7a\u5b9a\u8868\u3092\u7528\u3044\u305f\u5b9f\u88c5\u65b9\u6cd5\u304c\u8f09\u3063\u3066\u3044\u305f\u3002\u76ee\u304b\u3089\u30a6\u30ed\u30b3\u3060\u3063\u305f\u306e\u3067\u66f8\u3044\u3066\u307f\u305f\u304f\u306a\u3063\u305f\u3002\u521d\u5b66\u8005\u306b\u6559\u80b2\u3059\u308b\u6d41\u308c\u3068\u3057\u3066\u3088\u304f\u4f7f\u308f\u308c\u308b\u3089\u3057\u3044\u306e\u3067\u5468\u77e5\u306e\u7269\u307f\u305f\u3044\u3060\u3051\u3069\u3002 \u95a2\u4fc2\u306a\u3044\u3051\u3069\u65b0\u3057\u304f &hellip; <a href=\"https:\/\/dalomo.net\/blog\/2019\/05\/30\/464\/\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":465,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[9],"tags":[3,6,45,44,4],"class_list":["post-464","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-9","tag-android","tag-androidstudio","tag-excelvba","tag-44","tag-4"],"_links":{"self":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/464","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/comments?post=464"}],"version-history":[{"count":10,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/464\/revisions"}],"predecessor-version":[{"id":478,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/464\/revisions\/478"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/media\/465"}],"wp:attachment":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/media?parent=464"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/categories?post=464"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/tags?post=464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}