Recentemente ho iniziato il porting un sacco di mia C++ esistente codice di applicazione a oltre al C++ 11 e ora che sto convertendo al nuovo puntatori intelligenti std :: unique_ptr e std: : shared_ptr, ho una domanda specifica sui deleteri personalizzati. Voglio aggiungere un logger lambda per vedere dove vengono chiamate le mie eliminazioni, ma non riesco a compilare la versione di specializzazione dell'array. Il consiglio sarebbe molto apprezzato.unique_ptr <T> lambda deleter personalizzato per array di specializzazione
ho cercato invano un esempio di deleter personalizzato per array di specializzazione unique_ptr per VC++ 10 o GCC 4.5.2+. Vorrei stampare un messaggio di log quando i delet sono chiamati in una lambda, principalmente per assicurarsi che tutti i puntatori che penso vadano fuori ambito lo facciano. Questo è possibile per la versione dell'array della specializzazione? Posso farlo funzionare con la versione non array, e posso anche farlo funzionare con una specializzazione di matrice se passo una struttura esterna "MyArrayDeleter" come secondo argomento. Un'altra cosa, sarebbe possibile rimuovere la brutta std :: function come pensavo di poter lasciare che la firma lambda lo indicasse.
struct MySimpleDeleter {
void operator()(int* ptr) const {
printf("Deleting int pointer!\n");
delete ptr;
}
};
struct MyArrayDeleter {
void operator()(int* ptr) const {
printf("Deleting Array[]!\n");
delete [] ptr;
}
};
{
// example 1 - calls MySimpleDeleter where delete simple pointer is called
std::unique_ptr<int, MySimpleDeleter> ptr1(new int(5));
// example 2 - correctly calls MyArrayDeleter where delete[] is called
std::unique_ptr<int[], MyArrayDeleter> ptr2(new int[5]);
// example 3 - this works (but default_delete<int[]> would have been passed
// even if I did not specialize it as it is the default second arg
// I only show it here to highlight the problem I am trying to solve
std::unique_ptr<int[], std::default_delete<int[]>> ptr2(new int[100]);
// example 3 - this lambda is called correctly - I want to do this for arrays
std::unique_ptr<int, std::function<void (int *)>> ptr3(
new int(3), [&](int *ptr){
delete ptr; std::cout << "delete int* called" << std::endl;
});
// example 4 - I cannot get the following like to compile
// PLEASE HELP HERE - I cannot get this to compile
std::unique_ptr<int[], std::function<void (int *)>> ptr4(
new int[4], [&](int *ptr){
delete []ptr; std::cout << "delete [] called" << std::endl;
});
}
The compiler error is as follows:
The error from the compiler (which complains about the new int[4] for ptr4 below is:
'std::unique_ptr<_Ty,_Dx>::unique_ptr' : cannot access private member declared in class 'std::unique_ptr<_Ty,_Dx>'
1> with
1> [
1> _Ty=int [],
1> _Dx=std::tr1::function<void (int *)>
1> ]
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\memory(2513) : see declaration of 'std::unique_ptr<_Ty,_Dx>::unique_ptr'
1> with
1> [
1> _Ty=int [],
1> _Dx=std::tr1::function<void (int *)>
1> ]
esempio 3 mi ha salvato .. grazie –