weidagang2046的专栏

物格而后知致
随笔 - 8, 文章 - 409, 评论 - 101, 引用 - 0
数据加载中……

我的评论

re: 位图排序[未登录] weidagang2046 2008-01-07 20:17  
10^7 bit和1M谁更大?
re: 数据挖掘数据集网站 weidagang2046 2007-03-15 16:02  
http://www.sogou.com/labs/dl/q.html

不知道这个对你是否有用。
re: 芒果软件XMIND 2007 weidagang2046 2007-01-16 20:20  
试用了一下,是个不错的创意,但现在还比较简陋,需要继续努力!
因为Bookmark Servlet对javascript一无所知,只当成一般的网页文本返回,所以我认为和一般浏览器的访问没有区别,用session维护状态是完全可以的。
创建javascript对象的时候指定id属性可以避免覆盖;也可以按id查找对象来判断是否已经返回,如果找到的话就可以看情况删除。关于id的维护问题办法应该很多。比如,维护一个全局计数器。

如果一定要同步的话(比如,第一次返回才能发第二次),建议看看javascript的wait()函数。

ps: 我的javascript经验也不多,上面的建议还需要实践检验。欢迎交流!
re: 如何用jsp写一个ajax跨域代理? weidagang2046 2006-12-16 14:17  
需求还不太明确,ajax跨域类型比较多,不知道你具体要做成怎样的。
re: Ruby真有那么好吗? weidagang2046 2006-12-11 20:09  
不看好Ruby,理由是和C编码风格类似的语言才可能有广大的群众基础,尤其在中国。
re: 编码问题 weidagang2046 2006-12-08 00:27  
上次看你另一篇文章,对编码分析得很详细,很有帮助。再接再厉!
re: Maven2快速入门教程 weidagang2046 2006-12-02 16:17  
比较关心Maven能不能方便地与eclipse集成?
re: JDK 在linux下支持epoll了 weidagang2046 2006-11-20 09:53  
能否介绍一下5种模型?
re: 获取象素的RGB weidagang2046 2006-11-16 17:06  
原理很简单,只需要简要的三步。既:获取屏幕DC、得到当前鼠标所在的像素值、分解出像素值中的红、绿、蓝三色既可,很简单吧!

关键代码实现:
1、 获取屏幕DC


HDC hDC = ::GetDC(NULL); //获取屏幕DC
2、 获取当前鼠标位置像素值


CPoint pt;
GetCursorPos(&pt);        //得到当前鼠标所在位置
COLORREF clr = ::GetPixel(hDC, pt.x, pt.y); //获取当前鼠标点像素值
3、 分解出像素点中的红、绿、蓝颜色值

CString ClrText;
ClrText.Format("%d",GetRValue(clr));     //分解出红色值
ClrText.Format("%d",GetGValue(clr)); //分解出绿色值
ClrText.Format("%d",GetBValue(clr)); //分解出蓝色值
::ReleaseDC(NULL, hDC); //释放屏幕DC
re: google的可怕之处 weidagang2046 2006-11-15 18:15  
Google不如腾讯厉害。如果某一天有人比Google做得更好,我们可以马上不用google,但是不管谁做出比腾讯更好的系统都没有人会抛弃QQ。知识关联的价值还无法与人的关联的价值相比。
有没有文档之类的?
希望能出一篇文章讲讲分析过程。
re: DND入门学习 weidagang2046 2006-09-05 05:26  
作为插件运行还需要创建plugin.xml文件,用PDE创建plugin project with view可得。

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

<extension
point="org.eclipse.ui.views">
<category
name="DND Category"
id="com.blogspot.weidagang2046.dnd">
</category>
<view
name="DND View"
icon="icons/sample.gif"
category="com.blogspot.weidagang2046.dnd"
class="com.blogspot.weidagang2046.dnd.views.DNDView"
id="com.blogspot.weidagang2046.dnd.views.DNDView">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
ratio="0.5"
relative="org.eclipse.ui.views.TaskList"
relationship="right"
id="com.blogspot.weidagang2046.dnd.views.DNDView">
</view>
</perspectiveExtension>
</extension>

</plugin>
re: Perl 模块多平台下安装方法 weidagang2046 2006-05-16 18:43  
set HTTP_PROXY=http://hostname:8080中http://不能省略,否则会报Error: 501 Protocol scheme '' is not supported。
re: vi中如何使用:s 命令实现字串的替换 weidagang2046 2006-02-10 11:50  
:%s/str1/str2/g 实现全局替换。
re: 对于关于EJB3.0随笔的感触 weidagang2046 2006-02-07 20:46  
不错,支持你!
re: 怎样把一个二维数组写入文件 weidagang2046 2006-01-19 15:49  
map(...)
map(function, sequence[, sequence, ...]) -> list

Return a list of the results of applying the function to the items of
the argument sequence(s). If more than one sequence is given, the
function is called with an argument list consisting of the corresponding
item of each sequence, substituting None for missing values when not all
sequences have the same length. If the function is None, return a list of
the items of the sequence (or a list of tuples if more than one sequence).
re: 问个昨天的MSN面试题 weidagang2046 2005-11-11 23:12  
a[n][n]为矩阵,查找x

for(i=0,j=n-1;i<n && j>=0 && a[i][j]!=x;i+=a[i][j]<x,j-=a[i][j]>x);
re: Java中存储数据的地方 weidagang2046 2005-10-28 21:51  
关于你的举例,你怎么确定一个在堆栈,一个在堆的?请教!
re: Multiple inheritance and the this pointer weidagang2046 2005-10-25 21:36  
写了个小小的测试程序:

#include<cstdio>
#include<algorithm>

using namespace std;

class A
{
private:
int a;

public:
A()
{
printf("A: %p\n", this);
}
};

class B
{
private:
int b;

public:
B()
{
printf("B: %p\n", this);
}
};

class C : public A, public B
{
private:
int c;

public:
C()
{
printf("C: %p\n", this);
}

};

int main()
{
C objC;
return 0;
}
自己测试了一下,下面是我的web.xml配置文件:

<?xml version="1.0" encoding="ISO-8859-1"?>

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"">http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">

<security-constraint>
<web-resource-collection>
<display-name>Example Security Constraint</display-name>
<web-resource-name>welcome_info</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>role1</role-name>
<role-name>tomcat</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>welcome_info</realm-name>
</login-config>
</web-app>

注意这里的url-pattern <url-pattern>/ddly/admin/*</url-pattern>其实是以本web app为根的相对路径。
re: C/C++数组名与指针区别深入探索 weidagang2046 2005-08-24 12:45  
真惭愧,一直没有弄清楚数组名和指针的区别,现在终于拨云见日了!
写得不错,支持!
re: Introduction to DOM weidagang2046 2005-04-23 16:59  
写得很不错!DOM的概念讲得很透彻。DOM只是一系列与独立于实现的interfaces,它提供了访问和修改Document Object的接口。
re: 如何使用线程 weidagang2046 2005-04-21 04:10  
Timer部分对我来说比较新鲜
第一次听说class constructor的概念