Click here to Skip to main content
15,884,836 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Problem with string conversion Pin
Jochen Arndt22-Nov-12 2:52
professionalJochen Arndt22-Nov-12 2:52 
QuestionHow to set the alignment of items of CListCtrl Pin
rahul.kulshreshtha19-Nov-12 16:43
rahul.kulshreshtha19-Nov-12 16:43 
AnswerRe: How to set the alignment of items of CListCtrl Pin
Richard MacCutchan19-Nov-12 22:50
mveRichard MacCutchan19-Nov-12 22:50 
GeneralRe: How to set the alignment of items of CListCtrl Pin
rahul.kulshreshtha19-Nov-12 23:22
rahul.kulshreshtha19-Nov-12 23:22 
GeneralRe: How to set the alignment of items of CListCtrl Pin
Richard MacCutchan20-Nov-12 0:02
mveRichard MacCutchan20-Nov-12 0:02 
GeneralRe: How to set the alignment of items of CListCtrl Pin
rahul.kulshreshtha20-Nov-12 16:30
rahul.kulshreshtha20-Nov-12 16:30 
GeneralRe: How to set the alignment of items of CListCtrl Pin
Richard MacCutchan20-Nov-12 21:17
mveRichard MacCutchan20-Nov-12 21:17 
QuestionLinked Lists and unique_ptr's Pin
Tom Moore19-Nov-12 7:29
Tom Moore19-Nov-12 7:29 
Hi, its been a while since I've used CodeProject.

Quick Question.

I'm training myself on standard algorithms and trying to create a linked list.

In Java it's easy.
Java
class Node{
   public int data;
   public Node next;
   public Node(int val){ data= val; next = null;}
}


In the C++ Pre Ox11 you could use raw pointers.
C++
struct Node{
  int data;
  Node* next;
  
  Node(int val):data(val),next(0){}
}


but you had to new up your next node and delete it afterwards.

With the new version of C++, you can use unique_ptr.

But if I try to use that, I can't seem to get a good node to next.

C++
struct node{
  int data;
  unique_ptr<node> next;

  node(int al):data(val),next(nullptr){}
}
  node a(3);
  node b(4);
  a.next = b; // Error
  a.next = move(b); // Error
  a.next.reset (b); // Error


Please could you enlighten me, on how I can get this to work.

Many Thanks
Tom
AnswerRe: Linked Lists and unique_ptr's Pin
Eugen Podsypalnikov19-Nov-12 10:50
Eugen Podsypalnikov19-Nov-12 10:50 
AnswerRe: Linked Lists and unique_ptr's Pin
Chris Meech19-Nov-12 14:04
Chris Meech19-Nov-12 14:04 
Questionencrypt and decrypt Pin
thandy mitchell19-Nov-12 6:24
thandy mitchell19-Nov-12 6:24 
AnswerRe: encrypt and decrypt Pin
Richard MacCutchan19-Nov-12 7:59
mveRichard MacCutchan19-Nov-12 7:59 
AnswerRe: encrypt and decrypt Pin
CPallini19-Nov-12 11:36
mveCPallini19-Nov-12 11:36 
Questionaccess excel data using c++ Pin
lakshmamma19-Nov-12 2:05
lakshmamma19-Nov-12 2:05 
AnswerRe: access excel data using c++ Pin
_Flaviu19-Nov-12 2:14
_Flaviu19-Nov-12 2:14 
AnswerRe: access excel data using c++ Pin
CPallini19-Nov-12 2:17
mveCPallini19-Nov-12 2:17 
AnswerRe: access excel data using c++ Pin
Jochen Arndt19-Nov-12 2:26
professionalJochen Arndt19-Nov-12 2:26 
QuestionScroll window after zoom Pin
_Flaviu18-Nov-12 22:11
_Flaviu18-Nov-12 22:11 
AnswerMessage Closed Pin
18-Nov-12 22:18
_Flaviu18-Nov-12 22:18 
QuestionPre commit hooks for svn Pin
Mukul_P18-Nov-12 17:41
Mukul_P18-Nov-12 17:41 
AnswerRe: Pre commit hooks for svn Pin
Richard MacCutchan18-Nov-12 21:42
mveRichard MacCutchan18-Nov-12 21:42 
AnswerRe: Pre commit hooks for svn Pin
April Fans22-Dec-12 21:07
April Fans22-Dec-12 21:07 
QuestionC++, RealTime Scheduler in Operating System Pin
Kevin Stlip17-Nov-12 16:10
Kevin Stlip17-Nov-12 16:10 
AnswerRe: C++, RealTime Scheduler in Operating System Pin
Richard MacCutchan17-Nov-12 21:46
mveRichard MacCutchan17-Nov-12 21:46 
Questionporting my device driver 32 bit to windows 7 64 bit Pin
navn199116-Nov-12 22:03
navn199116-Nov-12 22:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.