首页 > 其他 > 详细

google 被墙的解决办法

时间:2015-03-17 11:47:48      阅读:327      评论:0      收藏:0      [点我收藏+]

昨晚无意中发现的东西,分享给各位使用,google搜索技术方面的东西还是很准确的,可惜被墙了,但是上有政策下有对策……

 

谷歌地址:

http://74.125.224.18/

 

http://91.213.30.151/

 

https://www.sssis.com/?gws_rd=ssl

 

http://61.219.131.99/

 

https://github.com/greatfire/wiki

 

Singleton模式实现方式分析: http://csharpindepth.com/articles/general/singleton.aspx

 

最佳方式:

public sealed class Singleton

 {

     private static readonly Lazy<Singleton> lazy =

         new Lazy<Singleton>(() => new Singleton());

      

     public static Singleton Instance { get { return lazy.Value; } }

 

     private Singleton()

     {

     }

 } 

google 被墙的解决办法

原文:http://www.cnblogs.com/wanghaibin/p/4343732.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!