右键--》SFTP/FTP -》Sync Remote To Local {作者:半条虫(466814195)}
提示以下错误
An unexpected error occurred, please send the file ~/.config/sublime-text-2/Packages/User/SFTP.errors.log to support@wbond.net
...
分类:
其他好文 时间:
2014-09-02 12:26:14
阅读次数:
265
package com.leetcode;
import java.util.ArrayList;
public class Permutation {
public static void main(String[] args) {
ArrayList res = perms2("abc");
System.out.println(res);
}
//法一:
publ...
分类:
编程语言 时间:
2014-09-01 22:53:04
阅读次数:
268
手头一个项目,需要编写项目的makefile多目录结构:csource/├── common│ └── sqlite3├── inc│ ├── curl│ ├── lua│ └── Protection├── lib│ ├── arm│ └── linux├── obj├── out│ ├── ar...
分类:
系统相关 时间:
2014-09-01 19:09:53
阅读次数:
242
import java.util.regex.*;
public class TestRegularExpression {
public static void main(String[] args) {
if (args.length < 2) {
System.out.println("Usage:\n" + "java TestRegularExpressi...
分类:
编程语言 时间:
2014-09-01 16:01:53
阅读次数:
183
ref,函数形参变量的输入有两种方式:传值,传址。而ref则为传址。out,顾名思义,即输出。相当于一个函数可以有多个返回值,这是C#中特有的params,在数组形参前面使用,可以赋多个值。enum,枚举是由程序员定义的类型,与类或结构一样。例如 //static void Add(ref int ...
分类:
其他好文 时间:
2014-09-01 13:58:13
阅读次数:
202
1 public class Randomer { 2 3 public static void main(String[] args) { 4 Random rand = new Random(); 5 System.out.println(rand.n...
分类:
编程语言 时间:
2014-09-01 12:04:52
阅读次数:
260
HelloWorldHelloWorld.javapackagecom.test.spring01;
publicclassHelloWorld{
privateStringname;
publicHelloWorld(){
System.out.println("调用构造函数...");
}
publicStringgetName(){
returnname;
}
publicvoidsetName2(Stringname){//对应name="name2"
..
分类:
编程语言 时间:
2014-09-01 02:50:03
阅读次数:
315
Combinations
Total Accepted: 18327 Total
Submissions: 60479My Submissions
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
For example,
If n = 4...
分类:
其他好文 时间:
2014-09-01 01:40:32
阅读次数:
204
网上搜索了一番,示例挺多,但发现都写的是 input in; output out;然后 assign io= (oe)?out:1'bz;就有点想不明白了,当IO方向为输出时,应该输出out的值,那么针对这个IO模块,out应该是input才对。而in应该是ouput的。尝试写了段代码module...
分类:
其他好文 时间:
2014-09-01 01:35:32
阅读次数:
275
声明
实习森的理解层次,希望有错大家一起纠正
本文主要信息来自网友共享的一个JSPAPI,不是特别全,只是对jsp内置对象进行了简单的介绍,这里我总结了一下
正文
Jsp主要内置了9个对象,分别为:Application、Exception、Out、PageContext、Page、Request、Response、Session以及Config,详细如下:
Applicat...
分类:
Web程序 时间:
2014-09-01 00:30:32
阅读次数:
178