1 public class Album : TableServiceEntity 2 { 3 } 4 public class PhotoAlbumDataContext : TableServiceContext 5 { 6 pu...
偶尔在网上看到的,相对比较好的c#端订单号生成规则public class BillNumberBuilder{ private static object locker = new object(); private static int sn = 0; pu...
分类:
其他好文 时间:
2014-07-10 11:51:39
阅读次数:
197
1 AlertDialog builder=new AlertDialog.Builder(context).setTitle("注意:") 2 .setIcon(R.drawable.dailog_icon) 3 .setMessa...
分类:
移动开发 时间:
2014-07-07 19:46:09
阅读次数:
288
在本机上非oracle用户运行sqlplus时,报以下错误:[cpdds@node1 ~]$ sqlplus cpdds_pdata/cpdds_pdataSQL*Plus: Release 10.2.0.4.0 - Production on 星期五 4月 27 13:43:16 2012Copy...
分类:
数据库 时间:
2014-07-03 00:42:38
阅读次数:
271
syntax:contained in:description:Requests a permission that the application must be granted inorder for it to operate correctly. Permissions are grant....
分类:
移动开发 时间:
2014-07-02 09:59:26
阅读次数:
203
boost::scoped_ptr和std::auto_ptr非常类似,是一个简单的智能指针,它能够保证在离开作用域后对象被自动释放。上一段代码,以及其输出: 1 #include 2 #include 3 #include 4 5 class implementation 6 { 7 pu...
分类:
其他好文 时间:
2014-07-01 18:58:19
阅读次数:
261
1、使用私有构造器或者枚举类型强化singleton
1》单例模式---私有构造器,提供一个公有的成员是一个静态工厂方法:
public class SingleTon{
private static final SingleTon single=new SingleTon();
private SingleTon(){ }
pu...
分类:
其他好文 时间:
2014-07-01 14:24:47
阅读次数:
181
1.1. hadoop远程过程调用1、 远程接口调用(必须实现VersionedProtocol接口)里面有一个方法,IPC通信时会比较客户端和服务端接口的版本号。必须一致才可以package rpc;import org.apache.hadoop.ipc.VersionedProtocol;pu...
分类:
其他好文 时间:
2014-07-01 11:58:14
阅读次数:
186
之前对于webview的认识很肤浅,这次正好研究一下:在webview当中加载网址的时候,使用load.url(""),但是要记得在AndroidManifest.xml中对其进行配置。配置语句为:<uses-permissionandroid:name="android.permission.INTERNET"/>重载shouldOverrideUrlLoading(WebView..
分类:
移动开发 时间:
2014-07-01 09:57:00
阅读次数:
184
mysql> grant all on *.* to 'root'@'192.168.1.1' identified by 'password';
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
。
确认方式(查看是否有grant all 没...
分类:
数据库 时间:
2014-07-01 07:08:47
阅读次数:
461