.net程序基本编写、执行流程(c#) 1>编写c#代码,保存为.cs文件。 2>通过csc.exe程序来将.cs文件编译为.net程序集(.exe或.dll)。此时的exe或dll并不是机器码(cpu不可理解)。【>csc/out:c:\a.exec:\program.cs】 ...
分类:
Web程序 时间:
2014-07-09 19:45:05
阅读次数:
301
adbserverisoutofdate.killing...1:调试android的时候发现一个的问题1C:\Users\xxxx>adbstart-server2adbserverisoutofdate.killing...3ADBserverdidn'tACK4*failedtostartda...
分类:
数据库 时间:
2014-07-09 18:40:42
阅读次数:
202
java后台数据如下:name=刘德华,在jsp页面使用便签输出:页面显示为:姓名: 刘德华完全没有达到效果有没有!查看html页面源码:姓名: <span style="color:red">刘德华</span>推断问题出在上,于是将的escapeXml...
分类:
Web程序 时间:
2014-07-09 16:09:22
阅读次数:
228
1.vim xx.c 新建文件2.进去之后点i 再输入C代码3.按ESC退出 shift+: 再输入wq,可退出C编译4.输入 cc xx.c可进行编译连接5.输入./a.out 输出运行结果其他运行小指令rm xx.c 清除ls 文件夹pwd 该环境的运行目录cd xx 跳转到xx文件夹wq保.....
分类:
移动开发 时间:
2014-07-09 15:30:11
阅读次数:
239
xcode 5.0连接 svn server, check out时出现如下error :The operation couldn’t be completed. (NSURLErrorDomain error -1012.)解决方法:打开终端 然后输入如下命令svn ls xxxx(xxx是你的S...
分类:
其他好文 时间:
2014-07-08 22:36:11
阅读次数:
249
import java.util.Scanner;public class Value{ public static void main(String[] args){ Scanner in=new Scanner(System.in); System.out.println("请定义学生的人数.....
分类:
编程语言 时间:
2014-07-08 22:32:15
阅读次数:
273
Description
During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China Plain. Generally speaking, villages connected by tunnels lay in a...
分类:
其他好文 时间:
2014-07-08 16:51:42
阅读次数:
506
def Fibonacci(n):
if n <= 0:
return 0
if n <= 1:
return n
f0 = 0; f1 = 1
for i in range(2, n + 1):
fn = f0 + f1
f0 = f1
f1 = fn
return fn...
分类:
其他好文 时间:
2014-07-08 16:42:03
阅读次数:
163
publicstaticvoidmain(Stringargs[]){
System.out.println(321);
PreparedStatementps=null;
ResultSetrs=null;
Connectionct=null;
try{
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
Stringurl="jdbc:microsoft:sqlserver://serverxp.com:1433;Database..
分类:
数据库 时间:
2014-07-08 12:02:24
阅读次数:
270
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceConsoleApplication1
{
classProgram
{
staticvoidMain(string[]args)
{
inti=10;//值类型
intj=10;//必须初始化
intk;//不需要初始化
int[]iarr={..
分类:
其他好文 时间:
2014-07-08 09:42:06
阅读次数:
221