Uvm factory question

Could you any one tel me the answer to my question.
My question is the arguments for create method is same as the arguments for function new why?

In reply to Mahi8790:

Because the create() method ultimately winds up calling new(), but it does a lot of other stuff enabled by the factory. You should always use create(). See this thread.