摘要: 我的简单解决方法: 将虚拟机的网卡设置为桥接模式,然后重启 [root@192 etc]# /etc/init.d/network restart 我的虚拟机问题就解决了。 如果使用命令重启网卡无效,可以尝试重启虚拟机。 阅读全文
posted @ 2020-08-23 22:27 AppLiu 阅读(3805) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/whatday/article/details/50417503 class A { int a; }; class B { int b; }; class C : public A { int c; }; int main() { B b; C c 阅读全文
posted @ 2020-08-23 22:21 AppLiu 阅读(1159) 评论(0) 推荐(1) 编辑
摘要: 转载:https://blog.csdn.net/haha_201510/article/details/88119587 centOS环境下的解决方案: 查看监听状态lsnrctl status 如果有监听,则如下图,显示有服务orcl(服务名)监听。 如果没有监听,查看监听文件 cd /u01/ 阅读全文
posted @ 2020-08-23 22:15 AppLiu 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 转载 https://www.cnblogs.com/jianglaoda/p/9184371.html 1,登录报错如下: [oracle@oracle_yueworld admin]$ rlwrap sqlplus system/system51@st1 SQL*Plus: Release 11 阅读全文
posted @ 2020-08-23 21:57 AppLiu 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: 转载自 https://stackoverflow.com/questions/6555827/ora-01034-oracle-not-available-ora-27101-shared-memory-realm-does-not-exist 执行如下命令即可解决上述问题 SQL>set ora 阅读全文
posted @ 2020-08-23 21:54 AppLiu 阅读(1226) 评论(0) 推荐(0) 编辑
摘要: 工厂模式的作用:用于生产类对象 工厂模式分类:简单工厂模式、工厂模式、抽象工厂模式 工厂模式的特点: (1)工厂模式是一种设计模式,遵循开闭原则, – 开放, 对新增的功能是开放的。 – 关闭, 对以前的已经完成的功能时不允许修改的。 (2)封装对象的创建过程,可以轻而易举的获得一个可用的对象。 ( 阅读全文
posted @ 2020-08-23 11:28 AppLiu 阅读(236) 评论(0) 推荐(0) 编辑