declare 
  type cursorType is ref cursor;  
  v_cur cursorType;
begin
  getemps(v_cur);
  /*各位朋友,我想在这个位置,循环取出游标中的值,请问如何写?*/
end;其中过程getemps代码如下
 create or replace procedure getemps( p_cursor in out types.cursorType )  
  as  
  begin  
        open p_cursor for select id, title from cf_news order by id;--表的名字  
  end;