1.启用单向通讯的方法,不能有返回值(void可以),不能有out参数,只允许传入参数。
[ServiceContract(Namespace = "MyNamespace")] public interface IService {
[OperationContra...
分类:
其他好文 时间:
2014-06-06 22:24:17
阅读次数:
263
// 注册 jvm 关闭时操作
Runtime.getRuntime().addShutdownHook(new Thread(){ public void run() {
System.out.println("关闭"); } });
分类:
其他好文 时间:
2014-06-06 21:54:11
阅读次数:
241
查看sqlserver被锁的表以及如何解锁查看被锁表:select
request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName
from sys.dm_tran_locks where resourc...
分类:
数据库 时间:
2014-06-06 20:57:54
阅读次数:
274
1 import java.text.*; 2 public class Gxjun 3 { 4
public static void main(String args[] ) 5 { 6 int n=123456789; 7
System.out.println("整数"+"按千分组号(带正好.....
分类:
编程语言 时间:
2014-06-04 17:55:19
阅读次数:
203
女朋友送了我一个树莓派(Raspberry
PI)作为生日礼物。简单的上手体验一下。借了一张室友的Kingston 4g SD卡,加一条网线。准备开搞! 首先下载了官方的NOOBS。 NOOBS(New
Out of Box Software)是一种新颖的设置程序,很方便的让第一接触Linux和.....
分类:
Web程序 时间:
2014-06-04 16:37:27
阅读次数:
356
package com.saic.grape.controller;
public class Data {
private int j=0;
/**
* 加法
*/
public synchronized void inc() {
j++;
System.out.println("inc 加法运算>>"+j);
}
/**
* 减法
*/...
分类:
编程语言 时间:
2014-06-04 14:03:01
阅读次数:
356
longtime=System.currentTimeMillis(); System.out.println(time); SimpleDateFormatformat=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss"); java.util.Dated1=newDate(time); Stringnow=format.format(d1); System.out.println(now); longt=0; try{ java.util.Dated2=format.pa..
分类:
移动开发 时间:
2014-06-04 12:51:10
阅读次数:
474
使用Windows集成验证,不管使用IIS还是IIS
express,当同一个域进行访问时,可能出现401错误,错误的处理办法:1. IIS(摘自MSDN的)IIS 7 was difficult for
figuring out why i was getting the 401 - Unauth...
分类:
数据库 时间:
2014-06-03 16:32:14
阅读次数:
477
在接口定义中: in、out指定了参数传递的方向 reval指定了参数应当被当做方法的返回值
coclass指定了独立的组件以及它们支持的接口IDL被编译为二进制格式,即类型库,(TLB文件)COM接口是通过C++的Vtable建立起来的使用ATL
AppWizard创建的 工程仅仅为COM组...
分类:
其他好文 时间:
2014-06-03 15:46:50
阅读次数:
297
/*通过直接预分区的方式建表*/private static void
printTableRegion(String tableName)throws IOException{ System.out.println("Prtint
region of table:"+tableName);/...
分类:
其他好文 时间:
2014-06-03 14:51:05
阅读次数:
207