如果我在Android Studio中创建一个带有主线程的类会发生什么。

huangapple go评论83阅读模式
英文:

What happens if I create a class with main thread in android studio

问题

如果我在Android Studio中创建一个带有main方法的Java类,会对我的mainActivity和其他活动产生影响吗?这会如何影响它们?我在使用Android Studio方面有点新手…

英文:

If I create a java class with the main method within Android Studio does it affect my activities both mainActivity and others and how does it affect them?
I am a bit new to Android studio ...

答案1

得分: 2

我猜你指的是 main 方法。安卓对一个名为 "main" 的方法并没有特殊的含义。如果你在任何一个类中放置了一个 main 方法,除非你自己调用它,否则它会被忽略。

英文:

I assume you mean the main method. Android gives no special meaning to a method called "main". If you put a main method in any of your classes it'll just be ignored, unless you call it yourself.

huangapple
  • 本文由 发表于 2020年4月4日 21:48:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/61029078.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定