2021-07-04から1日間の記事一覧

PyCharm の日本語化の方法

2020年版までの JetBrains PyCharm の日本語化は、 Pleiades日本語化プラグイン https://mergedoc.osdn.jp/ を使ってましたが、 JetBrains社の公式の言語パックで日本語化するのが正しい方法のようです。PyCharm をインストールして起動直後 Plugins で Japa…

メモ:Windows においての Python PATH

pip 実行の為のPATH C:\Users\Xxxxxxx\AppData\Local\Programs\Python\Python39\Scripts\python 実行の為のPATH C:\Users\Xxxxxxx\AppData\Local\Programs\Python\Python39\Xxxxxxx : Windows ユーザーーーー python-daemon · PyPI

親Class を全て参照する

package sample 配下に public class Foo extends FooBase{ } public class FooBase extends AppBase{ } public class AppBase{ } とあるとき、親Class 全てを求める方法 UnaryOperator<Class<?>> superFind = c->c.getSuperclass(); Class cl = Foo.class; while(!(c</class<?>…