Maison  >  Questions et réponses  >  le corps du texte

c++ - Les codes sources que j'ai vus sur Internet, tels que str == "#Connected#", sont entourés de ##. Qu'est-ce que cela signifie, veuillez me donner quelques conseils.

bool Chat::detectingInstruct(string str)
{

if(str == "#Connected#")
{
    if(isServer && RecSocket != NULL)
    {
        if(AllName.size() == 0)
        {
            RecSocket->SendData("#NoID#");
        }
        string newName = SetName();
        NameInRoom.push_back(newName);
        ShowName();
        Room->Send("#ClearNameInRoom##end#");
        for(vector<string>::iterator itr = NameInRoom.begin();
            itr != NameInRoom.end();itr++)
            Room->Send("#ShowName#" + *itr + "#end#");
        RecSocket->SendData("#GetName#" + newName + "#end#");
    }
    return true;
}
世界只因有你世界只因有你2733 Il y a quelques jours679

répondre à tous(1)je répondrai

  • 迷茫

    迷茫2017-05-19 10:49:46

    Ceci. . . Laissez-moi d'abord confirmer s'il s'agit du mode C++/CLI ?

    répondre
    0
  • Annulerrépondre