Is there a difference between
void DLNode::setNext (DLNode* node){} or int* a
and
void DLNode<Type>::s etNext(DLNode *node){} or int *a
I've seen both used, is it just a style thing or is there some difference?
void DLNode::setNext (DLNode* node){} or int* a
and
void DLNode<Type>::s etNext(DLNode *node){} or int *a
I've seen both used, is it just a style thing or is there some difference?
Comment