代码搜索:MyString
找到约 1,391 项符合「MyString」的源代码
代码结果 1,391
www.eeworm.com/read/468628/1484165
as mystring.as
package com.dmh2002.util{
public class MyString {
/**
* 补0
* 参数keta_num 为 将要补足的位数
* 参数num 为 数字
* 返回字符串
* trace(addZero(3,13)) //013
*/
public static function ad
www.eeworm.com/read/387809/8652722
h mystring.h
#ifndef STRING_H
#define STRING_H
typedef char *mystring;
int lengthString(mystring a);
bool equalString(mystring a,mystring b);
mystring contactString(mystring a,mystring b);
#endif
www.eeworm.com/read/387809/8652739
cpp mystring.cpp
#include
#include
#include "mystring.h"
int lengthString(mystring a)
{
int count=0;
int i=0;
while(a[i])
{
count++;
i++;
}
return count;
}
bool equal
www.eeworm.com/read/387809/8652752
h mystring.h
#ifndef STRING_H
#define STRING_H
typedef char *mystring;
int lengthString(mystring a);
bool equalString(mystring a,mystring b);
#endif
www.eeworm.com/read/387809/8652766
cpp mystring.cpp
#include "mystring.h"
int lengthString(mystring a)
{
int count=0;
int i=0;
while(a[i])
{
count++;
i++;
}
return count;
}
bool equalString(mystring a,mystring b)
{
bool f
www.eeworm.com/read/287618/8678680
h mystring.h
/*
* INTEL CONFIDENTIAL
* Copyright (c) 2002, 2003 Intel Corporation. All rights reserved.
*
* The source code contained or described herein and all documents
* related to the source code ("Mat
www.eeworm.com/read/287618/8678683
c mystring.c
/*
* INTEL CONFIDENTIAL
* Copyright (c) 2002, 2003 Intel Corporation. All rights reserved.
*
* The source code contained or described herein and all documents
* related to the source code ("Mat
www.eeworm.com/read/386582/8736693
h mystring.h
/* $NetBSD: mystring.h,v 1.11 2003/08/07 09:05:35 agc Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from so
www.eeworm.com/read/386582/8736717
c mystring.c
/* $NetBSD: mystring.c,v 1.16 2003/08/07 09:05:35 agc Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from so
www.eeworm.com/read/386042/8770253
cpp mystring.cpp
#include ".\mystring.h"
#using
bool Mystring::operator >=(Mystring c2)
{ if(*this>c2||*this==c2)return 1;else return 0;}
bool Mystring::operator >=(char *string)
{ if(*this>str