undeffcs.java
来自「数值方面的优化算法」· Java 代码 · 共 58 行
JAVA
58 行
public class UndefFcs { public static int cvector(int arg1, int arg2) { try{ throw new Exception("Linkage Excaption"); }catch(Exception ex) { System.err.println("C2J error: call undefined method"); ex.printStackTrace(); } } public static int cmatrix(int arg1, int arg2, int arg3, int arg4) { try{ throw new Exception("Linkage Excaption"); }catch(Exception ex) { System.err.println("C2J error: call undefined method"); ex.printStackTrace(); } } public static int cfree_vector(int arg1, int arg2, int arg3) { try{ throw new Exception("Linkage Excaption"); }catch(Exception ex) { System.err.println("C2J error: call undefined method"); ex.printStackTrace(); } } public static int cfree_matrix(int arg1, int arg2, int arg3, int arg4, int arg5) { try{ throw new Exception("Linkage Excaption"); }catch(Exception ex) { System.err.println("C2J error: call undefined method"); ex.printStackTrace(); } } public static int cnrerror(int arg1) { try{ throw new Exception("Linkage Excaption"); }catch(Exception ex) { System.err.println("C2J error: call undefined method"); ex.printStackTrace(); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?