Why the postion of CCLabelTTF does not accurate

*mDeplevel = CCLabelTTF::labelWithString;
*mDeplevel~~>setAnchorPoint);
*mDeplevel~~>setColor);
*mDeplevel~~>setPosition);
addChild;
*mQuality = CCLabelTTF::labelWithString;
*mQuality~~>setAnchorPoint);
*mQuality~~>setColor);
*mQuality~~>setPosition(ccp(330.0f,104.0f));
addChild(*mQuality,1);
*mAttri = CCLabelTTF::labelWithString(“”,GAME_FONT,FONT_SIZE_SMALL);
_mAttri~~>setAnchorPoint);
*mAttri~~>setColor);
*mAttri~~>setPosition);
addChild;
*mCost = CCLabelTTF::labelWithString;
*mCost~~>setAnchorPoint);
*mCost~~>setColor);
*mCost~~>setPosition(ccp(330.0f,68.0f));

I set the AnchorPoint 0,0 x ordinate is 330,but they are not aligned.

You have to set the alignment to left, the default is center.