检测到您已登录华为云国际站账号,为了您更好的体验,建议您访问国际站服务网站 https://www.huaweicloud.com/intl/zh-cn
不再显示此消息
在打开的对话框中,选择一个本地文件夹来存储克隆的存储库,然后单击选择Select Repository Location。 存储库克隆完成后,CodeArts IDE会提示您打开它。 父主题: 管理存储库
IDE需要手动操作来保存更改,键盘快捷键:“Ctrl+S”。 同时,您可以打开自动保存,这将在配置的指定延迟后或焦点离开编辑器时保存更改。启用此选项后,无需手动保存文件。打开自动保存的最简单方法是单击“文件>自动保存”开关,在延迟后打开或关闭保存。 有关对自动保存的更多控制,请打开用户设置并查找相关设置: files
Test() { double area = InlineParameter(10, Math.PI); } } 重构后 class InlineParameter { private double InlineParameter(double rad)
private void InlineField() { System.out.println(message); } } 重构后 class InlineField { private void InlineField() { System.out
private void bar(int i) { baz(i);} private void baz(int i) { } } 重构后 class SafeDelete { private void foo() { bar();} private void bar()
void sayHello() { System.out.println("Hello World"); } } 重构后 class ConvertToInstanceMethod { public static void main(String[] args)
在打开的对话框中,选择包含测试源文件的项目文件夹。 在接着打开的对话框中,选择用于识别您的测试文件的文件通配符模式。 测试框架集成配置完成后,CodeArts IDE会在测试视图中展示发现的测试用例。 父主题: 测试
是因为某些操作系统允许:在文件名中。 -d或--diff 打开文件差异编辑器。需要两个文件路径作为参数。 -w或--wait 等待文件关闭后再返回。 --locale <locale> 设置CodeArts IDE会话的显示语言(区域设置)(例如,en或zh-cn)。 父主题: 命令行界面
5; return true; } return false; } } 重构后 class Invert { private static double a; public static void main(String[]
void print() { System.out.println("Hello World!"); } } 重构后 class ExtractImpl implements ExtractImplInterface { public static void
用应用程序代理。“代理管理”支持您更加便捷地管理代理配置。 请在“会话管理”区域中单击“视图和更多操作...”按钮(),然后从弹出菜单中选择“打开代理管理”。或者在主菜单中,选择“RemoteShell>代理管理”(全模式)或“ > 远程连接 > >代理管理”(精简模式)。 在打
public void DoSomeThing() { System.out.println(testStr); } } 重构后 package com.refactoring.source; public class Refactoring { public
return myResult.toArray(new String[myResult.size()]); } } 重构后 class TypeMigration { private String[] myResult; public String[]
<package_name>”命令(Linux)。由于numpy包是matplotlib的依赖项,因此安装matplotlib时numpy会被同时安装。 安装完依赖包后,您可以重新运行代码示例,现在它应该能够按预期工作。 有关如何使用Python环境的更多详细信息,请参阅“构建环境”文档。 父主题: 简介
public void DoSomeThing() { System.out.println(testStr); } } 重构后 package com.target.feature; public class Refactoring { public String
void print() { System.out.println(message); } } } 重构后 class ReplaceConstructor { public static void main(String[] args) {
sayHello() { System.out.println("Hello" + " " + "World!"); } } 重构后 class ExtractConstant { public static final String MESSAGE = "Hello"
0; i < n; i++) { System.out.println(text); } } } 重构后 class ExtractMethod { public static void main(String[] args) {
run() { System.out.println("Data" + data.toString()); } } 重构后 import java.util.List; import java.util.function.Function; class PrintAction
intValue(); int b = a + number; number = 42; } } 重构后 class InlineVariable { private int a; private Byte test; private