/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/java/using_extend_flatten_runme.java
20 строк
507 B
William S Fulton
Add testcase for using declaration and extend for flattening class
04 сен 2024, 10:22
04 сен 2024, 10:22
3b01f3f
Код
Авторство
О чём код?
import using_extend_flatten.*; public class using_extend_flatten_runme { static { try { System.loadLibrary("using_extend_flatten"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); System.exit(1); } } public static void main(String argv[]) { ExtendDerived ed = new ExtendDerived(); ed.one(); ed.two(); ed.three(); } }