实现swing中,文本输入框代码助手的功能。
类似eclipse中,打点自动完善代码功能...
方法一 : 可以直接在程序中添加url映射
在最外层的urls.py中添加
1
2
3
4
5
urlpatterns = patterns('',
......
(r'^robots\.txt$', lambda r:
HttpResponse("User-agent:
*\nDisa...
分类:
其他好文 时间:
2014-04-29 13:42:20
阅读次数:
402
有时候我们会需要在界面上拖动view;uiview是继承于uiresponder的,所以可以响应触摸相关的事件。
重点是以下一组方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent...
分类:
移动开发 时间:
2014-04-29 13:41:20
阅读次数:
485
题目链接:11538 - Chess Queen
题意:给一个n*m棋盘,问放两个皇后,使得两个皇后互相能攻击到,有几种放法
思路:分横竖,对角线来考虑。
横:n * A(m, 2)种
竖:m * A(n, 2)种
对角线:由于有两条,可以算一条再乘2
2 * 所有对角线和(A(对角线格数,2))。
那么对角线格数为:(1, 2, 3, 4 ... n .n .n .n.n - 1....
分类:
其他好文 时间:
2014-04-29 13:38:20
阅读次数:
387
- (CGFloat)folderSizeAtPath:(NSString *) folderPath
{
NSFileManager * manager = [NSFileManager defaultManager];
if (![manager fileExistsAtPath:folderPath])
{
return 0;
...
分类:
移动开发 时间:
2014-04-29 13:36:20
阅读次数:
379
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=251
测模版:
#include
#include
#include
#include
#include
#include
using namespace std;
#define ...
分类:
其他好文 时间:
2014-04-29 13:31:21
阅读次数:
542
主要涉及了(1)对布局中某个控件的监听
(2)在布局文件中设置可显示,删除的参数
visibility的参数的有三个,在这里我只设置了一个,可见的。
android:visibility="visible"
剩下的和他的用法相同。
(3)在代码中监听控件后,对visibility的参数重新设置。
效果图:点击按钮后edittext不见了
(1)点击高级按钮前
(2)点击高级...
分类:
移动开发 时间:
2014-04-29 13:31:21
阅读次数:
390
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
void func()
{
string url;
cout << "输...
分类:
Web程序 时间:
2014-04-29 13:21:20
阅读次数:
506
question:
This Android SDK requires Developer Toolkit version 22.6.2 or above
please update ADT to the latest version
answer:
1.Start Eclipse, then select Help > Install New Software....
2....
分类:
移动开发 时间:
2014-04-29 13:18:20
阅读次数:
454
最近亲眼看到快播被大批警察包围,感觉到快播注定要关闭很多东西,很多宅男宅女们又要寂寞了,于是乎,疯狂的研究DHT网络技术
看到网上也有开源的代码,这不,我拿来进行了二次重写,呵呵,上代码:
#encoding: utf-8
import socket
from hashlib import sha1
from random import randint
from struct import u...
分类:
其他好文 时间:
2014-04-29 13:13:20
阅读次数:
420