int main(){ char * s = "hello,world" ; char *t = "happy"; strcpy(s,t) ; // error return 0; }本来以为并没有什么错误,但是实际运行的时候,出现段错误, 后来修改 char *s =...
分类:
其他好文 时间:
2015-07-25 12:03:51
阅读次数:
123
Given a collection of integers that might contain duplicates, nums, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain du...
分类:
其他好文 时间:
2015-07-25 10:43:06
阅读次数:
113
问题描述Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three integers. Y...
分类:
其他好文 时间:
2015-07-25 10:37:37
阅读次数:
117
【027-Remove Element(删除数组中的元素)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be ch...
分类:
编程语言 时间:
2015-07-25 09:33:10
阅读次数:
165
【029-Divide Two Integers(两个整数相除)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Divide two integers without using multiplication, division and mod operator.
If it is overflow, return MAX_INT.
题目大意 不使用除法,乘法...
分类:
编程语言 时间:
2015-07-25 09:31:31
阅读次数:
174
一个简单的C程序:1 #include2 3 int main()4 {5 printf("Hello World ! \n"); 6 return 0; 7 }程序的组成://预处理指令 , 以# 开始#include//主函数int mian(){}//库函数printf()...
分类:
其他好文 时间:
2015-07-25 08:17:10
阅读次数:
118
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------
1.8 方法
1.8.1方法的的定义
定义:完成特定功能的代码块。在很多语言里面有函数的定义,而在Java中函数被称为方法。
格式:
修饰符 返回值类型 方法名(参数类型 参数名1,参数类型 参数名2...){
方法体语句;
return 返...
分类:
编程语言 时间:
2015-07-25 01:48:04
阅读次数:
249
块的强大之处是:在声明它的范围里,所有变量都是可以捕获的。 int additional = 5; int(^addBlock)(int a,int b) = ^(int a,int b){ return a+b+additional; } int add = addBlock (2,5);
分类:
其他好文 时间:
2015-07-25 01:41:27
阅读次数:
115
代码如下: 在Documents1方法中使用yield return之后, 下次在进入Documents1方法就是从上一次yield return部分执行 using System; using System.Collections; using System.Collections.Generic...
最最根本的原因: public String func1( Object args ) { ????char [] flags = new char[60]; ????... ????... ????return flags.toString();????????? ? // java 基础不扎实!!!还...
分类:
其他好文 时间:
2015-07-25 00:21:54
阅读次数:
152