{"id":221388,"date":"2021-07-07T08:50:03","date_gmt":"2021-07-07T00:50:03","guid":{"rendered":"https:\/\/lrxjmw.cn\/?p=221388"},"modified":"2021-06-25T09:50:34","modified_gmt":"2021-06-25T01:50:34","slug":"introduction-to-internal","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/introduction-to-internal.html","title":{"rendered":"java \u4e2d\u7684\u5185\u90e8\u7c7b\u4ecb\u7ecd"},"content":{"rendered":"
\u5bfc\u8bfb<\/td>\n | \u5185\u90e8\u7c7b\u4e0d\u662f\u5f88\u597d\u7406\u89e3\uff0c\u4f46\u8bf4\u767d\u4e86\u5176\u5b9e\u4e5f\u5c31\u662f\u4e00\u4e2a\u7c7b\u4e2d\u8fd8\u5305\u542b\u7740\u53e6\u5916\u4e00\u4e2a\u7c7b\u3002\u5982\u540c\u4e00\u4e2a\u4eba\u662f\u7531\u5927\u8111\u3001\u80a2\u4f53\u3001\u5668\u5b98\u7b49\u8eab\u4f53\u7ed3\u679c\u7ec4\u6210\uff0c\u800c\u5185\u90e8\u7c7b\u76f8\u5f53\u4e8e\u5176\u4e2d\u7684\u67d0\u4e2a\u5668\u5b98\u4e4b\u4e00\uff0c\u4f8b\u5982\u5fc3\u810f\uff1a\u5b83\u4e5f\u6709\u81ea\u5df1\u7684\u5c5e\u6027\u548c\u884c\u4e3a\uff08\u8840\u6db2\u3001\u8df3\u52a8\uff09\u3002<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n <\/p>\n \u663e\u7136\uff0c\u6b64\u5904\u4e0d\u80fd\u5355\u65b9\u9762\u7528\u5c5e\u6027\u6216\u8005\u65b9\u6cd5\u8868\u793a\u4e00\u4e2a\u5fc3\u810f\uff0c\u800c\u9700\u8981\u4e00\u4e2a\u7c7b\u3002<\/p>\n \u800c\u5fc3\u810f\u53c8\u5728\u4eba\u4f53\u5f53\u4e2d\uff0c\u6b63\u5982\u540c\u662f\u5185\u90e8\u7c7b\u5728\u5916\u90e8\u5185\u5f53\u4e2d\u3002<\/p>\n \u5b9e\u4f8b1\uff1a\u5185\u90e8\u7c7b\u7684\u57fa\u672c\u7ed3\u6784<\/strong><\/div>\n \/\/\u5916\u90e8\u7c7b\r\nclass Out {\r\n private int age = 12;\r\n \r\n \/\/\u5185\u90e8\u7c7b\r\n class In {\r\n public void print() {\r\n System.out.println(age);\r\n }\r\n }\r\n}\r\n \r\npublic class Demo {\r\n public static void main(String[] args) {\r\n Out.In in = new Out().new In();\r\n in.print();\r\n \/\/\u6216\u8005\u91c7\u7528\u4e0b\u79cd\u65b9\u5f0f\u8bbf\u95ee\r\n \/*\r\n Out out = new Out();\r\n Out.In in = out.new In();\r\n in.print();\r\n *\/\r\n }\r\n}<\/pre>\n |