- Swift (iOS App)wandarealmwuhan.cn
Swift是用于iOS应用开发的主要语言。
swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let label = UILabel()
label.text = "Hello, World!"
label.frame = CGRect(x: 50, y: 100, width: 200, height: 50)
self.view.addSubview(label)
}
}
2. Java (Android App)
Java是Android应用开发的主要语言之一。
java
import android.os.Bundle;
import android.app.Activity;
import android.widget.TextView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView textView = new TextView(this);
textView.setTextSize(20);
textView.setText(“Hello, World!”);
setContentView(textView);
}
}
3. JavaScript (Web App)
JavaScript通常用于Web应用开发。
html
Hello, World!
4. Flutter (跨平台App) Flutter使用Dart语言。main.dart
dart
import ‘package:flutter/material.dart’;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: ‘Hello, World!’,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: Text(‘Hello, World!’),
),
body: Center(
child: Text(‘Hello, World!’),
),
),
);
}
}
请注意,这些代码只是非常基础的示例,用于展示如何在不同的平台上显示“Hello, World!”。要开发一个完整的App,你需要考虑更多的功能、用户界面设计、数据存储、网络请求等因素。生成一个完整的App代码涉及多个步骤和不同的技术栈,因为App可以是为iOS、Android、Web或其他平台设计的。下面我将为你提供用几种流行语言编写的非常基础的“Hello, World!”App示例代码。
- Swift (iOS App)
Swift是用于iOS应用开发的主要语言。
swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let label = UILabel()
label.text = "Hello, World!"
label.frame = CGRect(x: 50, y: 100, width: 200, height: 50)
self.view.addSubview(label)
}
}
2. Java (Android App)
Java是Android应用开发的主要语言之一。
java
import android.os.Bundle;
import android.app.Activity;
import android.widget.TextView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView textView = new TextView(this);
textView.setTextSize(20);
textView.setText(“Hello, World!”);
setContentView(textView);
}
}
3. JavaScript (Web App)
JavaScript通常用于Web应用开发。
html
Hello, World!
4. Flutter (跨平台App) Flutter使用Dart语言。main.dart
dart
import ‘package:flutter/material.dart’;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: ‘Hello, World!’,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: Text(‘Hello, World!’),
),
body: Center(
child: Text(‘Hello, World!’),
),
),
);
}
}
请注意,这些代码只是非常基础的示例,用于展示如何在不同的平台上显示“Hello, World!”。要开发一个完整的App,你需要考虑更多的功能、用户界面设计、数据存储、网络请求等因素。