我想在腳本文件(javax.script)中創建一個java類。請幫忙腳本java:在腳本文件中創建一個類
0
A
回答
2
你試過Google?
第2分的結果:
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/scripting/
http://java.sun.com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html
+0
我想要做的是在腳本中創建一個類(在我的腳本文件中,並使用它像一個Java類),這就是我所需要的。我不想從我的項目中導入一個類,但我需要在腳本中創建它。怎麼做 ??? – 2010-06-22 10:50:14
+0
您可以做的最好的事情就是創建一個Javascript對象,將其轉換爲可調用的對象,然後從中執行此操作。然而,除非你做某種插件系統,否則你會違反一些OOP規則 – TheLQ 2010-06-22 22:18:24
1
import java.io.*;
public class Employee{
String name;
int age;
String designation;
double salary;
public Employee (String name){
this.name=name;
}
public void empAge(int empAge){
age=empAge;
}
public void empDesignation(String empDesig){
designation=empDesig;
}
public void empSalary(double empSalary){
salary=empSalary;
}
public void printEmployee(){
System.out.println("Name: "+name);
System.out.println("Age: "+age);
System.out.println("Designation: "+designation);
System.out.println("Salary: "+salary);
}
}
1
public class WesternTown {
int stables;
int saloon;
int yearEstablished;
int troublemaker;
String sheriffsname;
String location;
public WesternTown() {
stables=3;
location="Wesrtern America";
yearEstablished=1850;
}
public WesternTown(String name) {
sheriffsname = name;
}
public static void main (String [] args){
WesternTown newtown = new WesternTown();
WesternTown newname = new WesternTown("SHERIFFER");
System.out.println("stables: " + newtown.stables);
System.out.println("saloon: " + newtown.saloon);
System.out.println("sheriffs: " + newtown.sheriffsname);
System.out.println("troublemaker: " + newtown.troublemaker);
System.out.println("location: " + newtown.location);
System.out.println("yearEstablished: " + newtown.yearEstablished);
System.out.println("The Name is: " + newname.sheriffsname);
}
}
相關問題
- 1. 在Eclipse中創建Scala腳本文件
- 2. 在ASP.NET中創建PowerShell腳本文件
- 3. 每5分鐘從php腳本創建一個文本文件
- 4. 創建一個類來導入腳本並運行該類中的腳本
- 5. 如何用另一個bash腳本創建一個bash腳本?
- 6. 創建一個AJAX腳本控件
- 7. 用腳本在bash中創建文件的多個副本
- 8. 在一個腳本中創建和下載CSV文件
- 9. 使用python在腳本中創建一個文件
- 10. 在Ant腳本中創建Java步驟
- 11. 在MMSE快速創建一個腳本 - 有關腳本
- 12. 從文件中創建CSV的腳本
- 13. 在AWS上創建文件的腳本
- 14. python腳本來創建另一個python腳本(或python可執行文件)
- 15. 在python腳本中創建一個新的adb logcat文本文件
- 16. 創建腳本
- 17. bash腳本創建多個文件,並在每個文件
- 18. shell腳本替換一個類文件
- 19. 在python腳本中創建文本文件
- 20. 如何在java腳本中創建這樣一個數組?
- 21. 如何從兩個文本文件中創建一個文本文件使用Apple腳本的文本
- 22. 從文本文件創建用戶名創建腳本?
- 23. 創建腳本硬件配置文件?
- 24. 如何從Python Scrapy腳本中創建一個exe文件?
- 25. 創建一個域類的一個實例,一個Grails腳本
- 26. bash:如何_best_從另一個腳本創建腳本
- 27. 創建另一個腳本的Python腳本
- 28. bash腳本創建腳本變量
- 29. 創建一個PHP腳本,電子郵件,文件到用戶
- 30. 應該腳本/插件創建一個.git文件夾?
你需要什麼幫助? – 2010-06-21 15:55:46