1.main函数C程序总是从main函数开始执行,当内核执行C程序时,在调用main函数之前先调用exec函数从内核获取命令行参数和环境变量值2.进程终止正常终止:(1)在main函数内执行return语句(2)调用exit(3)最后一个线程从其启动例程返回(4)最后一个线程调用pthread_ex...
分类:
其他好文 时间:
2014-05-08 11:28:22
阅读次数:
300
1 import java.util.Scanner; 2 3 public class T003 {
4 5 public static void main(String[] args) { 6 Scanner in = new
Scanner(System.in);...
分类:
编程语言 时间:
2014-05-08 11:24:26
阅读次数:
346
1 import java.util.Hashtable; 2 3 public class T035
{ 4 public static void main(String[] args) { 5
FirstNotRepeatingChar("abaccdeff"); 6...
分类:
编程语言 时间:
2014-05-08 10:38:54
阅读次数:
346
#include#includeusing namespace std;int main(){
const int N=100; int const N=100; //二者等价 int mark=0; //1 int*
ref_mark=&mark; int* c...
分类:
其他好文 时间:
2014-05-08 10:02:04
阅读次数:
205
#include#includetemplateinline T const&
max(T const& a,T const &b){ //如果a<b,那么返回a return a<b?b:a;}int
main(){ int i=42; std::cout<<"max(7,...
分类:
其他好文 时间:
2014-05-08 09:50:44
阅读次数:
264
Intent intent = new Intent();ComponentName cmp =
new
ComponentName("com.sina.weibo","com.sina.weibo.EditActivity");intent.setAction(Intent.ACTION_MAIN...
分类:
微信 时间:
2014-05-08 08:35:41
阅读次数:
736
1 import java.util.Stack; 2 public class T005 { 3
public static void main(String[] args){ 4 Node n1 = new Node(1); 5 Node n2 =
ne...
分类:
编程语言 时间:
2014-05-08 05:19:42
阅读次数:
402
使用意图传递数据的几种方式
点此获取完整代码
我们除了要从活动返回数据,也常常要传递数据给活动。对此我们可以使用Intent对象将这些数据传递给目标活动。
1、创建一个名为PassingData的项目,在activity_main.xml文件中添加一个Button:
<Button
android:id="@+id/btn_Secon...
分类:
移动开发 时间:
2014-05-08 04:21:08
阅读次数:
472
package org.mark.file;
import java.io.File;
/**
* File类的基本操作之读出全部文件夹路径
* 如果给定一个目录,要求将此目录中的全部文件都列出来
* 使用递归
*/
public class TestChare {
/**
* @param args
*/
public static void main(String[]...
分类:
其他好文 时间:
2014-05-08 03:53:29
阅读次数:
259
1.创建新的字符串 1 public class T004 { 2 public static
void main(String[] args){ 3 System.out.println(replaceBlank("we are happy")); 4
} 5 ...
分类:
编程语言 时间:
2014-05-08 01:08:18
阅读次数:
364