• 大小: 901KB
    文件类型: .bz2
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: 其他
  • 标签: linux  openkeeper  重邮  

资源简介

详细说明见:重邮等高校在linux下使用openkeeper代替netkeeper连接网络http://haofly.net/blog/2014/03/02/openkeeper

资源截图

代码片段和文件信息

#include “CString.h“


CString CString::Left(int iPos){
  char * tmp = new char[iPos +1];
//int copy(char *s int n int pos = 0) const;//把当前串中以pos开始的n个字符拷贝到以s为起始位置的字符数 
  this->copy(tmpiPos);
  tmp[iPos]=‘\0‘;
//  cout<<“left(“<  CString cs(tmp);
  delete tmp;
  return cs;
}

int CString::FindOneOf(const string s){
//int find(char c int pos = 0) const;//从pos开始查找字符c在当前字符串的位置
//int find_first_of(char c int pos = 0) const;//从pos开始查找字符c第一次出现的位置
//int find_first_of(const string &sint pos = 0) const;
return  this->find_first_of(s);
}

评论

共有 条评论