迷你流沙

文章
3
资源
0
加入时间
3年0月9天

centos5.X yum源地址变更

终于解决了困扰了我一晚上的问题,在此感谢作者。原贴链接:http://blog.csdn.net/qq_36357820/article/details/77732656下载了阿里和163的centos5.x的源,yum makecache的时候报错[root@localhost yum.repos.d]# yum makecacheLoaded plugins: fastestmirror, s

spring源码之Environment

SpringApplicationpublic ConfigurableApplicationContext run(String... args) { ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments); //准备好了Environment,此刻Environment中都有哪些配置参数 configureIgnoreBeanInfo(environm.

C风格字符串 C++string对象 字符串常量 字符串直接量

最大的区别就是C风格的字符串是静态的,不可以动态变化,使用极为麻烦。而C++的std::string类型动态管理,非常方便。C风格字符串和char数组是不一样的,看下面两种定义:char carr1 = {'a', 'b', 'c'};char carr2 = {'a', 'b', 'c', '\0'};看上面,carr2可以说成是C风格字符串,carr1就不是C风格字符串