- 浏览: 39894 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
chenniaoc:
http://www.techotopia.com/index ...
objective-c NSString 使用详细指南
文章列表
保持と解除という方法は、理屈は分かるし簡単そうに見えます。しかし、実際にやってみると意外と難しいことがわかります。そこでCocoaでは少し楽をするための仕組みを導入しています。簡単に言えば、とりあえずなんで ...
C++ Inline Functions
In this C++ tutorial, you will learn about Inline function, what is inline function, reason for the need of inline function, what happens when an inline function is written, general format of inline function explained with example.
What is Inline Function?
Inline functions are ...
The cocos2d Tips & Tricks is a problem / solution style book of “recipes” that can help the new and experienced cocos2d developer. It is a collection of the best practices, tips and tricks from the cocos2d community presented in an easy to use, organized format.
If you want to add a recipe to th ...
Writability
These attributes specify whether or not a property has an associated set accessor. They are mutually exclusive.
readwrite
Indicates that the property should be treated as read/write. This is the default.
Both a getter and setter method will be required in the @implementation. ...
package com.hp.concurrency;
public class SignalTest {
public static final Object lock = new Object();
public static void main(String[] args) {
new TestThread().start();
testRun();
}
public static void testRun() {
try {
Thread.sleep(200);
} catch (Interrupted ...
set JAVA_OPTS=%JAVA_OPTS% -Xloggc:gc.log -XX:+PrintGCDetails -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8086 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Xmx64M
jconsole
OracleのトリガでJavaの処理を起動する
JavaとPL/SQLを組み合わせて開発していると、「OracleのトリガでJavaの処理を起動させたいな」という局面に出会うことがあります。単にJavaで書いたプログラムを動かしたいだけならば、Orac ...
次の文章を読んで、それぞれの問いに対する答えとして、最も適当なものを1.2.3.4から一つ選びなさい。
ある大学で、授業中の私語を止めさせるために、私語の多い学生に対する注意の回数を記録し、成績に反映させること ...
- 2009-06-17 17:17
- 浏览 578
- 评论(0)
第一期
按此在新窗口浏览图片
我好像感冒了,有点发烧。
这个季节很容易感冒。
今天要学习的是四个意义相近的语法[~げ][~がち][~っぽい][~気味]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
◎~げ◎
▲意思
表示带有一种样子 [~そう<様子>]
(说话者看到他人的样子时所感觉到他人如何如何…… )
注:[说话者看到他人的样子时所感觉到他人如何如何……]
关键点:1,对方只能是人 2,是说话者看到后自己判断的感觉 3,[~]为表示人的情感的词
▲接续
な形(去掉な)+げ
い形(去掉い)+げ
Vます+げ (多为~ありげ的形式)
注意:「 ...
- 2009-03-05 20:30
- 浏览 9212
- 评论(0)
在很多程序做多需要有发送电子邮件的功能,以前使用java mail实现这个功能很麻烦。现在apache的下的一个子项目common-email,把这个问题大大的简化了。现在在java程序中实现发信功能,只需要短短几行代码。
可以http://jakarta.apache.org/commons/email/在这个地址下载开发包和查看详细的介绍。
下面介绍简单的使用。
public static class Mail {
public static void send(
String to,/* 收信人地址 */ String toName,//收信人姓名
String subject, / ...
- 2009-02-26 14:55
- 浏览 1495
- 评论(0)
一些java类中为什么需要重载 serialVersionUID 属性。
在Java中,软件的兼容性是一个大问题,尤其在使用到对象串行性的时候,那么在某一个对象已经被串行化了,可是这个对象又被修改后重新部署了,那么在这种情况下, 用老软件 ...
- 2009-02-23 22:40
- 浏览 874
- 评论(0)