#include using namespace std;/** * this 指针理解
*/class A{ int i;public: void hello(){
couthello();}由于单独开发基于c++的编译器,c++程序翻译成c程序后在,在使用c语...
分类:
编程语言 时间:
2014-05-12 16:34:20
阅读次数:
283
1. Java语言的简单认识 (1) Java有三个版本: a.JAVA SE
(以前称J2SE):Standard Environment 标准版本; b.JAVA EE (以前称J2EE):Enterprise Environment
企业版; c.JAVA ME (以前称J2ME)...
分类:
编程语言 时间:
2014-05-12 15:57:22
阅读次数:
335
个线程都有一个唯一的 ID 以识别不同的线程,std:thread 类有一个 get_id()
方法返回对应线程的唯一编号,你可以通过 std::this_thread 来访问当前线程实例,下面的例子演示如何使用这个 id:#include
#include #include void hello....
分类:
其他好文 时间:
2014-05-10 19:36:43
阅读次数:
281
前段时间认真的看了一下《lua程序设计(第二版)》这本书,每一章写一个lua脚本,诸多注释,相信给初学者有一定帮助。 -- 第一章代码print("hello
Hello");-- 全局函数function face(n) if n == 0 then return 1 else return n ...
分类:
其他好文 时间:
2014-05-06 00:57:20
阅读次数:
339
直接上代码 1: -- 第2章 类型与值 2: -- 动态类型的语言,每个值都携带自身类型信息
3: print("类型打印,每个值都携带自身类型"); 4: print(type("Hello world")); -- string
完全采用8位编码,字符可以具有任何数值编码,可以将任意二进制数据...
分类:
其他好文 时间:
2014-05-06 00:46:42
阅读次数:
318
1.first of all,take a lookup on the left side
of keyword const.If there is something(type or pointer),then apply const
featureto it.2.nothing found on...
分类:
编程语言 时间:
2014-05-06 00:38:25
阅读次数:
361
那年是787年!公元?——Monty
Python任何规则都不可能如此一般,以至不能容许任何例外(异常)。——Bobert Burton1、模块化和界面
任何实际程序都是由一些部分组成的。例如,最简单的“ Hello, world! ”程序也涉及到至少两部分:用户代码要求将Hello, world....
分类:
其他好文 时间:
2014-05-06 00:19:04
阅读次数:
382
Where's Waldorf?
Given a m by n grid
of letters, ( ),
and a list of words, find the location in the grid at which the word can be found. A word matches a straight, uninterrupted line o...
分类:
其他好文 时间:
2014-05-02 10:59:15
阅读次数:
514
许多次通过,主要是没有考虑到这种情况:“A C ”结尾有多重空格的情况。 1 public class
Solution { 2 public int lengthOfLastWord(String s) { 3 int j, k; 4 if(s == nu...
分类:
其他好文 时间:
2014-05-02 08:21:00
阅读次数:
300
现象:rengh@rengh-vm:~$ sudo apt-get install
ia32-libs[sudo] password for rengh: 正在读取软件包列表... 完成正在分析软件包的依赖关系树 正在读取状态信息... 完成
现在没有可用的软件包 ia32-...
分类:
其他好文 时间:
2014-05-02 05:42:49
阅读次数:
308