- 浏览: 109907 次
- 性别:
- 来自: 河南
-
最新评论
-
chinaemerson:
eyeit2000 写道这么简洁 哦哦,早上写的,存在草稿里了 ...
虚拟机类加载机制(三)类加载器 -
eyeit2000:
基础构建模块(一)之并发容器 -
eyeit2000:
这么简洁
虚拟机类加载机制(三)类加载器 -
eyeit2000:
我也是这么想的啊。。。。。
==============分割线================= -
chinaemerson:
非常感谢你的关注,其实在测试的时候我也注意到了这一 ...
山东大学09年复试机试题1
文章列表
1. $sudo vi etc/etc/hal/fdi/policy/mouse-wheel.fdi
如果没有创建新的。
这里 vi可以是emacs,geidt等任何编辑器
2.复制下面的内容
<?xml version=”1.0″ encoding=”UTF-8″?>
<match key=”info.product” string=”TPPS/2 IBM TrackPoint”>
<merge key=”input.x11_options.EmulateWheel” type=”string”>true</merge>
<merge ...
1、播放rmvb等常见电影格式
安装Mplayer即可解决:
sudo apt-get install mplayer mplayer-fonts
具体来源参见:http://wiki.ubuntu.org.cn/%E5%AE%89%E8%A3%85MPlayer
2、强制安装deb包语法(以QQ为例)
dpkg -i --force-architecture linuxqq_v1.0.2-beta1_i386.deb
3、gedit在英文环境下不识别gb2312编码
在“应用程序”菜单上点右键,选择“编辑菜单”.在主菜单的对话框中勾选系统工具-配置编辑器,并从应用程序菜单中开启。
依 ...
用linux下的ADT学Android,运行时出现 could not create temp file for system NAND disk image: Permission denied
搜索后解决办法:
Root cuase: avd related files are stored in /tmp/android, but you may do not
have permission to operate it.
Solution: chmod 777 /tmp/android
If you successfully ...
You can use a data model to store application-specific data. A data model is an ActionScript object that provides properties for storing data, and optionally contains methods for additional functionality. Data models provide a way to store data in the Flex application before it is sent to the server, ...
Remote-procedure-call (RPC) services let your application interact with remote servers to provide data to your applications, or for your application to send data to a server.
Flex is designed to interact with several types of RPC services that provide access to local and remote server-side logic. Fo ...
Flex provides simple syntax for binding the properties of components to each other. In the following example, the value inside the curly braces ({ }) binds the text property of a TextArea control to the text property of a TextInput control. When the application initializes, both controls display the ...
网上好多说的方法都不是很靠谱,经过反复摸索已经无数次的install & uninstall,终于成功了……
首先声明,我用的是link方法。
1、安装Eclipse。
我安装的是 glassfish-tools-bundle-for-eclipse ,用GlassFish开发JEE应用能节省好多功夫。在提示中按我的安装方式完成此安装。
2、安装Flex Builder3 plugin
安装时,先提示选择Flex Builder3组件的安装路径,然后让你选择你的Eclipse安装位置。这一步一定要选择正确的你的Eclipse的所在位置,否则会安装不完全。
...
(题干为前辈回忆所得,并非原文,但已表达清楚)
输入一个整数,它可以由n(n>=2)个连续整数相加得到,输出所有可能的连续整数序列,每个序列占一行,数字之间用空格分开,数据从小到大,每列按最小元素递增顺序排列,如果找不到,输出none
例:21=1+2+3+4+5+6
21=6+7+8
21=10+11
则输出 1 2 3 4 5 6
6 7 8
10 11
思路1:
题目一拿到手,就觉得是和队列相关,因为是从1开始累加测试。队列初始时已经放入1,2(因为只有从3开始,才有1+2=3成 ...
Flex applications are driven by run-time events, such as when a user selects a Button control. You can specify event listeners, which consist of code for handling run-time events, in the event properties of MXML tags. For example,
the <mx:Button> tag has a click event property in which you can ...
安装好Eclipse的CDT插件和MinGW后,就可以开始写C/C++程序了。但是使用过程中会发现,在Ctrl+s保存的时候并没有像写Java代码那样自动编译。几经周折,找到了该项设置:
新建一个项目,打开该项目的Properties -> C/C++ build -> Behaviour选项卡 -> 勾选Build on resource save(Auto build)
保存即可。
只能对单个项目进行此设置
Eclipse用的顺手了,学习C的时候也不想使用别的编辑器了,但是却发现一个问题,描述如下:
程序段:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int c = 0;
printf("Please input the value of number : ");
scanf("%d", &c);
printf("The value of number is : %d", c);
...
最近帮同学做一个Ajax小控件,遇到了一个动态删除表格行的问题。经过反复试验后,以下代码在FF和IE(相当鄙视)中均有效:
页面部分:
<html>
<head>
<title>Insert title here</title>
<script type="text/javascript" src="a.js"></script>
</head>
<body>
<table id="tableI" ...
In an XML document, tags are associated with a namespace. XML namespaces let you refer to more than one set of XML tags in the same XML document. The xmlns property in an MXML tag specifies an XML namespace. To use the default namespace, specify no prefix. To use additional tags, specify a tag prefix ...
With a few exceptions (see “MXML tag rules” on page 34), an MXML tag has an optional id property, which must be unique within the MXML file. If a tag has an
id property, you can reference the corresponding object in ActionScript.
In the following example, results from a web-service request are trac ...
Flex includes a large selection of user interface components, such as Button, TextInput, and ComboBox controls.
After you define the layout and navigation of your application by using container components, you add the user interface controls.
The following example contains an HBox (horizontal box) c ...