- 浏览: 692257 次
- 性别:
- 来自: 北京
最新评论
-
jeffersonz:
请问大神,这个插件记录下来的脚本为什么不能再Extendscr ...
PhotoShop - 记录PS的所有操作为JavaScript代码 -
cherishLC:
Andy__Zou 写道cherishLC 写道Andy__Z ...
Eigen的编译选项;MKL的使用 -
Andy__Zou:
cherishLC 写道Andy__Zou 写道cherish ...
Eigen的编译选项;MKL的使用 -
cherishLC:
Andy__Zou 写道cherishLC 写道Andy__Z ...
Eigen的编译选项;MKL的使用 -
Andy__Zou:
cherishLC 写道Andy__Zou 写道 您好,您的工 ...
Eigen的编译选项;MKL的使用
文章列表
以下程序打包成jar后在生成的.class文件的根路径(如elcipse工程的bin文件夹)下运行即可!!
生成的.h文件放在当前目录的h文件夹下
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class GenerateHFile {
static String suffix = ".class";
...
>> [status,result]=system('notepad.exe')
status =
0
result =
''
>> [status,result]=system('word.exe')
status =
1
result =
'word.exe' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
在运行系统命令时经常要对文件名称进行操作,
matlab中为
fullfile ,用于将文件路径()和 文件名 合成到一个字符串中,而无 ...
引用自定义或修改PDF-XChange Viewer的键盘快捷键设置
在工具栏上右键, 选则"Customize Toolbars", 第一个标签"Toolbars"选择顶部显示的工具条.
第二个标签"Commands"比较有用, 可以设置各种工具的快捷键, 或直接拖动其中的工具图标到工具栏上, 类似于Firefox的工具栏设置.以上内容来自:http://yuting-lv.iteye.com/blog/1169387
自己加点儿图示吧~
NOTE: 对于升级版本的PDF-XChange Editor,打开Customiz ...
//函数指针
//定义
typedef int (*int_intIntFuncPnt)(int ,int);//int_intIntFuncPnt为返回值为int,形参为两个int的函数指针
typedef int int_intIntFunc(int,int);//int_intIntFunc为返回值为int,形参为两个int的函数
int sub(int a ,int b){
return a-b;
}
int funcPnt(int_intIntFuncPnt f){
cout<<"funcPnt(1,2)="<< ...
//const成员函数
class TestConstMemberFunc{
public:
int x,y;
int getX(){
return x;
}
int getXconst() const{//加上cosnt,表明该函数不改变类内的变量,因而可以被cosnt的TestConstMemberFunc调用
//x=1;Error//error: 'x' cannot be modified because it is being accessed through a const object
return x;
}
int cmp(Te ...
测试cosnt 指针
//从右向左阅读声明,实际上const放在类型之后比较好
const int i=1;//i为常量 :i为一个const int
const int *ip;//ip指向的int为const的:ip 为一个const int的*指针
int const *ip2;//等同于ip的声明
int * const ipConst; //指针的值为常量,必须有初值,此处编译不通过:ipConst为一个int*型指针,它为const的
引用当const所在代码段中不包含括号时,沿着*号划一条线,如果const位于*的左侧,则const就是用来修饰指针所指 ...
C++笔记---reference
- 博客分类:
- C++
const int a=1024;
const int &ra=a;//const变量的引用的类型也必须是const的
引用不能被第二次赋值
int b=20,c=1;
int& rb=b;
rb=c;//相当于b=c;而非现在rb是c的引用
URL.openConnection 方法读取网页会产生阻塞,
采用异常 或concurrent包里的future等均无效;
搜到用Socket的.setOsTimeOut(); 可以设置时间,但是自己要写不少请求的文件头;
最后看到这篇,URL有类似的方法:
http://stuffthathappens.com/blog/2007/09/10/urlopenstream-might-leave-you-hanging/
主要代码如下:
引用
URLConnection conn = url.openConnection();
// setting these timeouts e ...
安装好cygwin及其组件gcc、g++、make、gdb后;
下载Eclipse 的CDT版本,可以编辑c工程;
问题:创建C++工程后 一旦有 #include<iostream>
eclipse 就会出错退出;
下载最新版本(jdk1.6.0_25)后问题解决,但输出问题仍得不到解决
function name=getVarName(x)
%返回输入变量的变量名
name=inputname(1);
end
%简单写法:
%vname=@(x) inputname(1);
%原帖地址:
%http://www.mathworks.com/matlabcentral/newsreader/view_thread/251347
Tag:windows ,event, wake up, 系统事件,监听 ,侦听,唤醒,sound
最近发现AutoHotKey挺好用的,可以注册热键,录制宏等等(先装的这个Installer for AutoHotkey_L,貌似少了录制宏的工具),下面是监听widonws唤醒的代码:
;windows 电源相关事件 :http://msdn.microsoft.com/en-us/library/aa373235(v=vs.85).aspx
OnMessage(0x218, "WM_LBUTTONDOWN",1) ;
return
WM_LBU ...
原来是有事件的分发。。。。。
http://www.opencv.org.cn/forum/viewtopic.php?t=4240
直接贴结果了:
界面:
这个还有点价值吧,麻烦下的人给贡献点分了:
http://download.csdn.net/source/2019425
or
http://www.pudn.com/downloads223/sourcecode/graph/detail1049804.html
主要的类:
package MeshSimpliefication_QuadErr;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
...
先贴出输出:
TreeSet Integer
集合为:[-1, 0, 6, 8, 66]
更改temp为:55
集合为:[-1, 0, 6, 8, 66]集合并未因为temp的改变而改变,说明java对基本类型做了特殊处理
-----------------------------
TreeSet 自定义的Int
集合为:[6, 66]
treeSet.contains(6)= true
treeSet.contains(66)= true
更改temp为:-55
集合为:[6, -55]集合因为temp的改变而改变,但排序并未改变
treeSet.contains(6)= false
t ...