您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ GetInput函数代码示例

51自学网 2021-06-01 21:09:25
  C++
这篇教程C++ GetInput函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中GetInput函数的典型用法代码示例。如果您正苦于以下问题:C++ GetInput函数的具体用法?C++ GetInput怎么用?C++ GetInput使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了GetInput函数的26个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: GetInput

void Player::FrameMove(float fElapsedTime){	GetInput();	XMMATRIX mBodyCameraRot = XMMatrixRotationRollPitchYaw(0, m_fYawAngle, 0);	XMMATRIX mHeadCameraRot = XMMatrixRotationRollPitchYaw(m_fPitchAngle, 0, 0);	mHeadCameraRot.r[3] = XMVectorSet(0.f, 0.6f, 0.f, 1.f);	mWorld = mBodyCameraRot * XMMatrixTranslationFromVector(mWorld.Translation());	m_pHead->SetRelativeWorld(mHeadCameraRot);	UpdateAcceleration(fElapsedTime);	ControllerNode::FrameMove(fElapsedTime);}
开发者ID:galek,项目名称:RathEngine,代码行数:16,


示例2: GetInput

ComponentResult karoke::Initialize(){	// get the current numChannels for input and output.	// a host may test various combinations of these 	// regardless of the outInfo returned by our SupportedNumChannels method	SInt16 auNumInputs = (SInt16) GetInput(0)->GetStreamFormat().mChannelsPerFrame;	SInt16 auNumOutputs = (SInt16) GetOutput(0)->GetStreamFormat().mChannelsPerFrame;		if ((auNumInputs == NUM_INPUTS) && (auNumOutputs == NUM_OUTPUTS))	{    		MaintainKernels();		return noErr;	}	else		return kAudioUnitErr_FormatNotSupported;}
开发者ID:slagyr,项目名称:8LU-DSP,代码行数:16,


示例3: GetInput

FPooledRenderTargetDesc FRCPassPostProcessSubsurfaceRecombine::ComputeOutputDesc(EPassOutputId InPassOutputId) const{	FPooledRenderTargetDesc Ret = GetInput(ePId_Input0)->GetOutput()->RenderTargetDesc;	Ret.Reset();	Ret.DebugName = TEXT("SceneColorSubsurface");	if(bSingleViewportMode)	{		// we don't need an alpha channel any more as it was used for ScreenSpaceSubsurfaceScattering only		Ret.Format = (Ret.Format == PF_FloatRGBA) ? PF_FloatRGB : PF_FloatRGBA;	}	// we replace the HDR SceneColor with this one	return Ret;}
开发者ID:frobro98,项目名称:UnrealSource,代码行数:16,


示例4: switch

EditorCell *GroupCell::GetEditable(){  switch (m_groupType) {    case GC_TYPE_CODE:    case GC_TYPE_IMAGE:    case GC_TYPE_TEXT:    case GC_TYPE_TITLE:    case GC_TYPE_SECTION:    case GC_TYPE_SUBSECTION:    case GC_TYPE_SUBSUBSECTION:      return GetInput();    case GC_TYPE_PAGEBREAK:    default:      return NULL;  }}
开发者ID:BigMcLargeHuge,项目名称:wxmaxima,代码行数:16,


示例5: GetInput

void FRCPassPostProcessOutput::Process(FRenderingCompositePassContext& Context){	const FRenderingCompositeOutputRef* Input = GetInput(ePId_Input0);	if(!Input)	{		// input is not hooked up correctly		return;	}	// pass through	PassOutputs[0].PooledRenderTarget = Input->GetOutput()->PooledRenderTarget;	check(ExternalRenderTarget);	*ExternalRenderTarget = PassOutputs[0].PooledRenderTarget;}
开发者ID:colwalder,项目名称:unrealengine,代码行数:16,


示例6: main

void main(){    int num;    int i;    i=0;    Print("Please choose how many simulation process you want to exec: ",sizeof("Please choose how many simulation process you want to exec: ")/sizeof(char),0,0);    num=GetInput();    if (num>8) {        Print("The max process number is 8./n",sizeof("The max process number is 8./n")/sizeof(char),0,0);    } else {        for (;i<num; i++) {            Exec("../test/DoctorOffice", sizeof("../test/DoctorOffice")/sizeof(char));        }    }    Exit(0);  }
开发者ID:shengzhc,项目名称:CSCi402,代码行数:16,


示例7: GetInput

SVDF::SVDF(const Operation& operation,           std::vector<RunTimeOperandInfo>& operands) {    input_ = GetInput(operation, operands, kInputTensor);    weights_feature_ = GetInput(operation, operands, kWeightsFeatureTensor);    weights_time_ = GetInput(operation, operands, kWeightsTimeTensor);    bias_ = GetInput(operation, operands, kBiasTensor);    state_in_ = GetInput(operation, operands, kStateInTensor);    params_.rank_ = getScalarData<int>(*GetInput(operation, operands, kRankParam));    params_.activation_ = static_cast<TfLiteFusedActivation>(getScalarData<int>(        *GetInput(operation, operands, kActivationParam)));    state_out_ = GetOutput(operation, operands, kStateOutTensor);    output_ = GetOutput(operation, operands, kOutputTensor);}
开发者ID:MIPS,项目名称:frameworks-ml,代码行数:15,


示例8: Preparation

avtDataObject_pavtActualDataMinMaxQuery::ApplyFilters(avtDataObject_p inData){    Preparation(inData);    bool zonesPreserved  = GetInput()->GetInfo().GetValidity().GetZonesPreserved();    zonesPreserved = (bool)UnifyMinimumValue((int)zonesPreserved);    if (!timeVarying && zonesPreserved)    {        avtContract_p contract =            inData->GetOriginatingSource()->GetGeneralContract();        avtDataset_p ds;        CopyTo(ds, inData);        avtSourceFromAVTDataset termsrc(ds);        avtDataObject_p obj = termsrc.GetOutput();        condense->SetInput(obj);        avtDataObject_p retObj = condense->GetOutput();        retObj->Update(contract);        return retObj;    }    else    {        avtDataRequest_p oldSpec = inData->GetOriginatingSource()->            GetGeneralContract()->GetDataRequest();        avtDataRequest_p newDS = new            avtDataRequest(oldSpec, querySILR);        newDS->SetTimestep(queryAtts.GetTimeStep());        newDS->SetVariable(queryAtts.GetVariables()[0].c_str());        if (!zonesPreserved)            newDS->TurnZoneNumbersOn();        avtContract_p contract =            new avtContract(newDS, queryAtts.GetPipeIndex());        avtDataObject_p temp;        CopyTo(temp, inData);        condense->SetInput(temp);        avtDataObject_p retObj = condense->GetOutput();        retObj->Update(contract);        return retObj;    }}
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:46,


示例9: GetOutput

voidavtMissingDataFilter::PostExecute(void){    // Call the base class's PostExecute. Set the spatial dimension to zero to     // bypass a check in avtDataObjectToDatasetFilter::PostExecute that causes     // all unstructured meshes with tdim<sdim to become polydata. We don't want    // that so work around it by setting tdim==sdim. Then we do the PostExecute    // and restore the old value.    avtDataAttributes &outAtts = GetOutput()->GetInfo().GetAttributes();    int sdim = outAtts.GetSpatialDimension();    int tdim = outAtts.GetTopologicalDimension();    if(tdim < sdim && sdim >= 2)        outAtts.SetTopologicalDimension(sdim);    avtDataTreeIterator::PostExecute();    if(tdim < sdim && sdim >= 2)        outAtts.SetTopologicalDimension(tdim);    if(removeMode)    {        // If anyone removed data, redo the original extents.        int dataWasRemoved = (int) this->removedData;        if (canDoCollectiveCommunication)            dataWasRemoved = UnifyMaximumValue(dataWasRemoved);        if(dataWasRemoved > 0)        {            avtDataAttributes &atts = GetInput()->GetInfo().GetAttributes();            avtDataset_p ds = GetTypedOutput();            int nVars = atts.GetNumberOfVariables();            double de[2];            for (int i = 0 ; i < nVars ; i++)            {                const char *vname = atts.GetVariableName(i).c_str();                if (! contract->ShouldCalculateVariableExtents(vname))                    continue;                    bool foundDE = avtDatasetExaminer::GetDataExtents(ds, de, vname);                if (foundDE)                {                    outAtts.GetOriginalDataExtents(vname)->Merge(de);                    outAtts.GetThisProcsOriginalDataExtents(vname)->Merge(de);                }            }        }    }}
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:46,


示例10: ProcessChildren

void OscNode::Process(unsigned int bufsize){	if (bufsize>(unsigned int)m_Output.GetLength())	{		m_Output.Allocate(bufsize);	}	ProcessChildren(bufsize);	if (ChildExists(0) && !GetChild(0)->IsTerminal())	{		m_WaveTable.ProcessFM(bufsize, m_Output, GetInput(0));	}	else	{		m_WaveTable.Process(bufsize, m_Output);	}}
开发者ID:mlozanov,项目名称:fluxus,代码行数:17,


示例11: GetInput

//GetInputbool Profiles::GetInput (enInput nInput, bool *pbState, bool bMouseMovement){    *pbState = false;    for (unsigned int i = 0; i != m_lProfiles.size (); i++)    {        if (!GetInput (nInput, pbState, i, bMouseMovement))        {            return false;        }        if (*pbState)        {            break;        }    }    return true;}//GetInput
开发者ID:3dik,项目名称:MPong,代码行数:18,


示例12: GetInput

voidavtRevolvedVolume::PreExecute(void){    avtSingleInputExpressionFilter::PreExecute();    avtDataAttributes &atts = GetInput()->GetInfo().GetAttributes();    if (atts.GetSpatialDimension() != 2)    {        EXCEPTION2(InvalidDimensionsException, "Revolved volume",                                               "2-dimensional");    }    haveIssuedWarning = false;    if (atts.GetMeshCoordType() == AVT_ZR)        revolveAboutX = false;    else         revolveAboutX = true;}
开发者ID:HarinarayanKrishnan,项目名称:VisIt26RC_Trunk,代码行数:17,


示例13: GetInput

voidavtSphereSliceFilter::UpdateDataObjectInfo(void){    avtDataAttributes &inAtts      = GetInput()->GetInfo().GetAttributes();    avtDataAttributes &outAtts     = GetOutput()->GetInfo().GetAttributes();    avtDataValidity   &outValidity = GetOutput()->GetInfo().GetValidity();    outAtts.SetTopologicalDimension(inAtts.GetTopologicalDimension()-1);    outValidity.InvalidateZones();    outValidity.ZonesSplit();    char params[200];    SNPRINTF(params, 200, "origin=%lg,%lg,%lg radius=%lg",        atts.GetOrigin()[0], atts.GetOrigin()[1], atts.GetOrigin()[2],        atts.GetRadius());    GetOutput()->GetInfo().GetAttributes().AddFilterMetaData("SphereSlice", params);}
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:17,


示例14: GetInput

FPooledRenderTargetDesc FRCPassPostProcessNoiseBlur::ComputeOutputDesc(EPassOutputId InPassOutputId) const{	FPooledRenderTargetDesc Ret = GetInput(ePId_Input0)->GetOutput()->RenderTargetDesc;	Ret.Reset();	if(OverrideFormat != PF_Unknown)	{		Ret.Format = OverrideFormat;	}	Ret.TargetableFlags &= ~TexCreate_UAV;	Ret.TargetableFlags |= TexCreate_RenderTargetable;	Ret.DebugName = TEXT("NoiseBlur");	return Ret;}
开发者ID:colwalder,项目名称:unrealengine,代码行数:17,


示例15: GetInput

void DebugCameraController2D::Update(float timeStep){    // Do not move if the UI has a focused element    if (GetUI()->GetFocusElement())        return;    // Do not move if interacting with UI controls    if (GetSystemUI()->IsAnyItemActive())        return;    Input* input = GetInput();    // Movement speed as world units per second    float moveSpeed_ = speed_;    if (input->GetKeyDown(KEY_SHIFT))    {        moveSpeed_ *= 2;        if (input->GetKeyPress(KEY_KP_PLUS))            speed_ += 1.f;        else if (input->GetKeyPress(KEY_KP_MINUS))            speed_ -= 1.f;    }    if (input->GetMouseButtonDown(MOUSEB_RIGHT))    {        IntVector2 delta = input->GetMouseMove();        if (input->IsMouseVisible() && delta != IntVector2::ZERO)            input->SetMouseVisible(false);        GetNode()->Translate2D(Vector2{(float)delta.x_ * -1.f, (float)delta.y_} * moveSpeed_ * timeStep);    }    else if (!input->IsMouseVisible())        input->SetMouseVisible(true);    // Read WASD keys and move the camera scene node to the corresponding direction if they are pressed    if (input->GetKeyDown(KEY_W))        GetNode()->Translate(Vector3::UP * moveSpeed_ * timeStep);    if (input->GetKeyDown(KEY_S))        GetNode()->Translate(Vector3::DOWN * moveSpeed_ * timeStep);    if (input->GetKeyDown(KEY_A))        GetNode()->Translate(Vector3::LEFT * moveSpeed_ * timeStep);    if (input->GetKeyDown(KEY_D))        GetNode()->Translate(Vector3::RIGHT * moveSpeed_ * timeStep);}
开发者ID:rokups,项目名称:Urho3D,代码行数:45,


示例16: GetInput

voidavtMeshLogFilter::PostExecute(){    avtDataTreeIterator::PostExecute();    avtDataAttributes& inAtts  = GetInput()->GetInfo().GetAttributes();    avtDataAttributes& outAtts = GetOutput()->GetInfo().GetAttributes();    // over-write spatial extents    outAtts.GetOriginalSpatialExtents()->Clear();    outAtts.GetThisProcsOriginalSpatialExtents()->Clear();    // get the outputs's spatial extents    double se[6];    if (inAtts.GetOriginalSpatialExtents()->HasExtents())    {        inAtts.GetOriginalSpatialExtents()->CopyTo(se);        if (xScaleMode == LOG)        {            avtMeshLogFilter_ScaleVal(se[0], useInvLogX);            avtMeshLogFilter_ScaleVal(se[1], useInvLogX);        }        if (yScaleMode == LOG)        {            avtMeshLogFilter_ScaleVal(se[2], useInvLogY);            avtMeshLogFilter_ScaleVal(se[3], useInvLogY);        }        outAtts.GetOriginalSpatialExtents()->Set(se);    }    else if (inAtts.GetThisProcsOriginalSpatialExtents()->HasExtents())    {        inAtts.GetThisProcsOriginalSpatialExtents()->CopyTo(se);        if (xScaleMode == LOG)        {            avtMeshLogFilter_ScaleVal(se[0], useInvLogX);            avtMeshLogFilter_ScaleVal(se[1], useInvLogX);        }        if (yScaleMode == LOG)        {            avtMeshLogFilter_ScaleVal(se[2], useInvLogY);            avtMeshLogFilter_ScaleVal(se[3], useInvLogY);        }        outAtts.GetThisProcsOriginalSpatialExtents()->Set(se);    }}
开发者ID:HarinarayanKrishnan,项目名称:VisIt28RC_Trunk,代码行数:45,


示例17: GetInputDataTree

voidavtDatasetToDataObjectFilter::InputSetActiveVariable(const char *varname){    SetActiveVariableArgs args;    args.varname = varname;    avtDataTree_p tree = GetInputDataTree();    bool success;    tree->Traverse(CSetActiveVariable, (void *) &args, success);    //    // Set up our data members for derived types that need this information.    //    activeVariableIsPointData = args.activeIsPoint;    hasPointVars              = args.hasPointVars;    hasCellVars               = args.hasCellVars;    GetInput()->GetInfo().GetAttributes().SetActiveVariable(varname);}
开发者ID:HarinarayanKrishnan,项目名称:VisIt26RC_Trunk,代码行数:18,


示例18: CreateIterativeCalcDataTree

boolavtLCSFilter::NativeMeshIterativeCalc(std::vector<avtIntegralCurve*> &ics){    int offset = 0;    if( *fsle_dt == NULL )    {      fsle_dt = CreateIterativeCalcDataTree(GetInputDataTree());            if (GetInput()->GetInfo().GetAttributes().DataIsReplicatedOnAllProcessors())        if (PAR_Rank() != 0)          fsle_dt = new avtDataTree();      SetOutputDataTree(fsle_dt);    }    return MultiBlockIterativeCalc(fsle_dt, ics, offset);}
开发者ID:burlen,项目名称:visit_vtk_7_src,代码行数:18,


示例19: GetInput

FPooledRenderTargetDesc FRCPassPostProcessHistogramReduce::ComputeOutputDesc(EPassOutputId InPassOutputId) const{	FPooledRenderTargetDesc UnmodifiedRet = GetInput(ePId_Input0)->GetOutput()->RenderTargetDesc;		UnmodifiedRet.Reset();	FIntPoint PixelExtent = UnmodifiedRet.Extent;	// each ThreadGroup outputs one histogram	FIntPoint NewSize = FIntPoint(FRCPassPostProcessHistogram::HistogramTexelCount, 2);	// for quality float4 to get best quality for smooth eye adaptation transitions	FPooledRenderTargetDesc Ret(FPooledRenderTargetDesc::Create2DDesc(NewSize, PF_A32B32G32R32F, FClearValueBinding::None, TexCreate_None, TexCreate_RenderTargetable, false));		Ret.DebugName = TEXT("HistogramReduce");		return Ret;}
开发者ID:colwalder,项目名称:unrealengine,代码行数:18,


示例20: GetInput

voidavtDatasetToDatasetFilter::PreExecute(void){    avtDatasetToDataObjectFilter::PreExecute();    avtDataAttributes &atts = GetInput()->GetInfo().GetAttributes();    if (switchVariables)    {        InputSetActiveVariable(activeVariable);    }    else if (atts.ValidActiveVariable() &&             atts.GetVariableName() != pipelineVariable)    {        if (AutomaticallyMakePipelineVariableActive())            InputSetActiveVariable(pipelineVariable);    }}
开发者ID:EricAlex,项目名称:ThirdParty-dev,代码行数:18,


示例21: GetNumberOfIndexedOutputs

void mitk::pa::SpectralUnmixingSO2::InitializeOutputs(){  // UNUSED unsigned int numberOfInputs = GetNumberOfIndexedInputs();  unsigned int numberOfOutputs = GetNumberOfIndexedOutputs();  mitk::PixelType pixelType = mitk::MakeScalarPixelType<float>();  const int NUMBER_OF_SPATIAL_DIMENSIONS = 3;  auto* dimensions = new unsigned int[NUMBER_OF_SPATIAL_DIMENSIONS];  for(unsigned int dimIdx=0; dimIdx<NUMBER_OF_SPATIAL_DIMENSIONS; dimIdx++)  {    dimensions[dimIdx] = GetInput()->GetDimensions()[dimIdx];  }  for (unsigned int outputIdx = 0; outputIdx < numberOfOutputs; outputIdx++)  {    GetOutput(outputIdx)->Initialize(pixelType, NUMBER_OF_SPATIAL_DIMENSIONS, dimensions);  }}
开发者ID:Cdebus,项目名称:MITK,代码行数:18,


示例22: GenerateSurfaceMesh

void meNGOptimizeFilter::Update(){	try	{		nglib::Ng_Meshing_Parameters*  netgenParam = new nglib::Ng_Meshing_Parameters(); 		netgenParam->maxh = m_param->m_maxh;		netgenParam->curvaturesafety = m_param->m_curvaturesafety;		netgenParam->segmentsperedge = m_param->m_segmentsperedge;		//netgenParam->optsteps2d = 3;				// if the input is only the geometry then generate the mesh before using it		if (nglib::Ng_GetNP(GetInput()->GetNGMesh( )) ==  0)		{			GenerateSurfaceMesh( netgenParam );		}		else		{			nglib::Ng_STL_MakeEdges(GetInput()->GetGeom( ),GetInput()->GetNGMesh( ),netgenParam);		}			netgenParam->optimize2d = "cmSmSm";		nglib::Ng_STL_OptimizeSurfaceMesh( GetInput()->GetGeom( ), GetInput()->GetNGMesh( ), netgenParam );		nglib::Ng_MeshRefinement( GetInput()->GetGeom( ), GetInput()->GetNGMesh( ) );		netgenParam->optimize2d = "m";		nglib::Ng_STL_OptimizeSurfaceMesh( GetInput()->GetGeom( ), GetInput()->GetNGMesh( ), netgenParam );		std::cout<< "optimization done!"<<std::endl;	}	catch (...)	{		throw;	}	}
开发者ID:jakubsadura,项目名称:Swiezy,代码行数:37,


示例23: OnSet

void CHveditDlg::OnSet(){   int n, i;   // Update m_Voltage   if (!GetInput())      return;   // Get current selection   n = m_ctlChannels.GetSelItems(m_nChannels, m_Selection);   // Set voltage to selected channels   for (i = 0; i < n; i++)      m_Demand[ChannelIndex(m_Selection[i])] = m_Voltage;   UpdateODB(n == 1 ? ChannelIndex(m_Selection[0]) : -1);   UpdateListBox(n == 1 ? m_Selection[0] : -1);}
开发者ID:cjpl,项目名称:midas,代码行数:18,


示例24: GetInput

int svlFilterSplitter::AddOutput(const std::string &name, const unsigned int threadcount, const unsigned int buffersize){    if (GetOutput(name)) return SVL_FAIL;    svlFilterOutput* output = svlFilterBase::AddOutput(name, false);    output->SetThreadCount(threadcount);    output->SetBufferSize(buffersize);    const unsigned int size = static_cast<unsigned int>(AsyncOutputs.size());    AsyncOutputs.resize(size + 1);    AsyncOutputs[size] = output;    // If input is already connected, then set the type of the new output accordingly    svlFilterInput* input = GetInput();    if (input->IsConnected()) output->SetType(input->GetType());    return SVL_OK;}
开发者ID:Shuyoung,项目名称:cisst,代码行数:18,


示例25: GetInput

voidavtTimeIteratorExpression::FinalizeTimeLoop(){    int numStates = GetInput()->GetInfo().GetAttributes().GetNumStates();    if (firstTimeSlice < 0)    {        firstTimeSlice = 0;    }    if (lastTimeSlice < 0)    {        lastTimeSlice = numStates - 1;    }    if (timeStride < 0)    {        timeStride = 1;    }    if (firstTimeSlice >= lastTimeSlice)    {        std::string msg("Start time must be smaller than end time for " );        msg += GetType();        msg += "./n";        EXCEPTION1(ImproperUseException, msg);    }    numTimeSlicesToProcess = (lastTimeSlice-firstTimeSlice)/timeStride+1;    if (lastTimeSlice >= numStates)    {        std::string msg(GetType());        msg += ":  Clamping end time to number of available timesteps.";        avtCallback::IssueWarning(msg.c_str());    }    //    // Ensure that the specified lastTimeSlice is included,    // regardless of the timeStride.    //    actualLastTimeSlice = firstTimeSlice + (numTimeSlicesToProcess-1)*timeStride;    if (actualLastTimeSlice < lastTimeSlice)    {        numTimeSlicesToProcess++;        actualLastTimeSlice = lastTimeSlice;    }}
开发者ID:HarinarayanKrishnan,项目名称:VisIt26RC_Trunk,代码行数:44,


示例26: GetInput

voidavtDataObjectSink::SetInput(avtDataObject_p in){    avtDataObject_p currentInput = GetInput();    if (*in == *currentInput)    {        debug1 << "A data object sink's current input was fed back into "               << "itself, ignoring..." << endl;        return;    }    //    // This will throw an exception if any problems occur, so we can just    // assume that it works.    //    SetTypedInput(in);    ChangedInput();}
开发者ID:EricAlex,项目名称:ThirdParty-dev,代码行数:19,



注:本文中的GetInput函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ GetInputDesc函数代码示例
C++ GetInfo函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。