`
mr.lili
  • 浏览: 152159 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
文章列表
//原字符串,要替换的字符串,替换为什么字符串 str_replace(std::string & str, const std::string & strsrc, const std::string &strdst) { std::string::size_type pos = 0;//位置 std::string::size_type srclen = strsrc.size();//要替换的字符串大小 std::string::size_type dstlen = strdst.size();//目标字符串大小 while((pos = str.find(s ...

c++ 传参

#include "stdafx.h" #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <TlHelp32.h> #include <stdio.h> #include <stdlib.h> #include <iostream> //#include   <unistd.h> #include <sys/types.h> #include <signal.h> #include <sstream> u ...
#include "stdafx.h" #include <Windows.h> #include <iostream> using std::cout; using std::endl; DWORD WINAPI TaskThreadExe(LPVOID lp); typedef   struct   stuParam { std::string name; int     age; }TstuParam; int _tmain(int argc, _TCHAR* argv[]) { /* E:\Versioncheck\iCAN ...
public class Test4 { //类里的内部类     class Inner1{ private String name; public void say(){ System.out.println("我是类里的内部类,只能本类里的方法可以访问"); } }     //在方法里访问类里的内部类     public void test(){     Inner1 in1 = new Inner1(); in1.name = "aaaaaaaa"; in1.say(); // Inner2 in2 = new ...
//1.c++获得编辑框的值 CEdit* T = (CEdit *)GetDlgItem(IDC_msgBox); T->SetWindowText("用户连接成功"); //2.int 转std::string #include <sstream> using std::cout; using std::endl; std::ostringstream oss; std::string str=""; int a = 123456789; oss<<a; str +=oss.str(); cout<<str&l ...
// 1.new Dog d1 = new Dog(); d1.say(); // 2.Class.forName Dog d2 = (Dog) Class.forName("com.test.Dog").newInstance(); d2.say(); // 3.ClassLoader ClassLoader c = ClassLoader.getSystemClassLoader(); Class classT = c.loadClass("com.test.Dog"); Dog d = (Dog) ...
第一步:获得权限:下载一个提取root的工具包: su-2.3.5-ef-signed.zip下载后,不要解压,直接复制到SD卡。重启,进入recovery模式,选择 install zip from sdcard ,再选择choose from sdcard,再再选择 su-2.3.5-ef-signed.zip ,再再再选择yes  XXX什么的,等待显示 XXX completed字样后,选择 reboot system now,手机会重启。完成后,你手机已经获取root权限。 提示:recovery模式下的按键为  音量+-或者轨迹球控制光标上下,按下轨迹球为确认,返回键为返回 第二步: ...

jquery树

dhtmlXTree是一个功能比较强大的树控件,基本上能满足大部分常规需求,比较好用。     当然,在使用过程中还是发现一点点问题。下面是我整理的一些里面常用函数的说明(只有简单的说明,如果要看详细的说明,自己查看原 ...
jquery的布局和table
1.将这个压缩包减压放在  eclipse 根目录下的  features  包里。 2.然后再重启 eclipse 。在新建里new-->other-->visual Swing Class 里就能找到要创建Applet、Dialog、Frame、Panel(当然在创建这些之前,肯定是要先建工程才能建这些)
01 (function () {      return typeof arguments;  })();  A. "object" B. "array" C. "arguments" D. "undefined" 答案:A 02 var f = function g() {         return 23;     }; typeof g(); A. "number" B. "undefined" C. "function" ...
SQL面试题(1) create table testtable1 ( id int IDENTITY, department varchar(12) ) select * from testtable1 insert into testtable1 values('设计') insert into testtable1 values('市场') insert into testtable1 values('售后') /* 结果 id department 1   设计 2   市场 3   售后 */ create table testtable2 ( id int IDENTITY, ...
java面试题及答案(基础题122道,代码题19道) ilovelate | 13 九月, 2005 00:31 JAVA相关基础知识 1、面向对象的特征有哪些方面 1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面。 ...
hadoop 文档:Hadoop开发者
我引用的一位网友的,记录下来,以后慢慢来修改,在2.2上运行过,是可以的,xml里不需要配置 http://www.apkbus.com/forum.php?mod=viewthread&tid=1972&extra= package com.test; //参照这位同学的:http://www.apkbus.com/forum.php?mod=viewthread&tid=1972 import java.util.ArrayList; import java.util.List; import android.app.Activity; import android ...
Global site tag (gtag.js) - Google Analytics