Jump to content
Fórum Script Brasil
  • 0

[AJUDA] Alocação dinâmica e estruturas


dnzzzz

Question

Olá!

Estou com uma dúvida, existe algum modo de alocar um vetor dinâmico dentro de uma estrutura em C++?
Dessa forma que eu fiz o código é compilado normalmente, mas ao executar ele sai do programa quando tenta alocar o tamanho dos vetores recurso e processo. Se alguém puder ajudar, agradeço!

Já tentei fazer

TComputador *cmp = new TComputador + (sizeof(TProcesso *)*prc) + (sizeof(TRecurso *)*rec); 

Mas aí o programa termina toda vez que encontro algo tipo "cmp->processo".

Segue um trecho do código como exemplo.

typedef struct TComputador{
    int maxRec;
    int maxPrc;
    int numPrc;
    double exec;
    TRecurso **recurso;
    TProcesso **processo;
} cmp;


TComputador *iniComputador(int rec, int prc){
    TComputador *cmp = new TComputador;
    int tipo;
    double cap, vel;
    if(cmp != NULL){
        *cmp->processo = new TProcesso[prc];
        *cmp->recurso = new TRecurso[rec];
        cmp->maxPrc = prc;
        cmp->maxRec = rec;
        cmp->numPrc = ;
        for(int i = ; i < rec; i++){
            cin >> tipo;
            cin >> cap;
            cin >> vel;
            addRecurso(cmp->recurso[i], tipo, cap, vel);
        }
    }
    return cmp;
}

 

Edited by dnzzzz
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...