efuns - calls - throw

MudOS v21c2

throw(3)�� MudOS v21c2�� (5 Sep 1994)

������:
    �� throw() - ǿ��һ�������������.
���﷨:
    �� void throw(mixed);

    �� �޷���ֵ throw( ��� );

���÷�:
    �� throw()�� ��������ǿ��һ�������������. �� throw()�� �� catch()�� ����һ��ʹ��ʱ, �ó�������߿�����Ʒ�������ʱ�δ���ʱ (runtime error) ��ʾ���ִ�����Ϣ. ��ʹ�� throw() ʱ, Ӧһ��ʹ�� catch() ����.
    �� ����Ϊ���͵��÷�:

    �� string err;
    �� int rc;

    �� err = catch(rc = ob->move(dest));
    �� if (err) {
    ���� throw("move.c: ob->move(dest): " + err + "\n");
    ���� return;
    �� }

���ο�: ������:
    �� Spock @ FF 97.Jul.25.�� (printed 3/16/95)

�ص���һҳ