commit 2025-09-02 20:49 add operator() in ZCppMain/ZCStringStd.H
This commit is contained in:
@ -837,10 +837,16 @@ namespace ZNsMain
|
||||
{
|
||||
// 문자 CharParam 을 AL_Count 개 붙인다.
|
||||
|
||||
return (*this)(CharParam,AL_Count);
|
||||
return (*this)(CharParam, AL_Count);
|
||||
}/*
|
||||
ZCStringBase& append(TypeChar CharParam, TypeLength AL_Count)*/
|
||||
|
||||
ZCStringBase& append(TypeLength AL_Count, TypeChar CharParam) // for string
|
||||
{
|
||||
return (*this)(CharParam, AL_Count);
|
||||
}/*
|
||||
ZCStringBase& append(TypeLength AL_Count, TypeChar CharParam)*/
|
||||
|
||||
ZCStringBase& append(TypeCharC* APC_Data, TypeLength AL_Length)
|
||||
{
|
||||
return (*this)(APC_Data, AL_Length);
|
||||
@ -1346,7 +1352,7 @@ namespace ZNsMain
|
||||
}/*
|
||||
ZCStringBase& operator()(ZTypUInt AUI_UIntParam)*/
|
||||
|
||||
ZCStringBase& operator()(long AL_LongParam)
|
||||
ZCStringBase& operator()(ZTypLong AL_LongParam)
|
||||
{
|
||||
const int CI_BuffSize=31; char VCA_BuffParam[CI_BuffSize];
|
||||
|
||||
@ -1354,7 +1360,7 @@ namespace ZNsMain
|
||||
|
||||
return (*this)(VCA_BuffParam, VI_ResultSize);
|
||||
}/*
|
||||
ZCStringBase& operator()(long AL_LongParam)*/
|
||||
ZCStringBase& operator()(ZTypLong AL_LongParam)*/
|
||||
|
||||
ZCStringBase& operator()(ZTypULong AUL_ULongParam)
|
||||
{
|
||||
|
Reference in New Issue
Block a user