是否可以直接执行非测试 Apex 代码?

Is it possible to execute non-test Apex code directly?

我使用多种语言编写了大量代码,但我是 Salesforce 和 Apex 的新手。 我看到 Apex 非常像 Java。 我看到在哪里可以在 @IsTest Apex class 中执行 @IsTest 方法。 但是如何直接执行非测试代码呢?还是必须总是建立并解雇一份工作? 还是使用 Salesforce CLI 和 Apex 插件在 VSC 中编写 Java?任何等效的 "Hello World" 示例?

TIA,

仍在学习史蒂夫

在这里分享一个非常基本的例子

public class Stack {

    public static void printDetails(){
        system.debug('in static method');
    }

    public void printDetails1(){
        system.debug('in non static method');
    }

}

为了触发上面的 class 你已经创建了你可以使用开发者控制台 Developer Console -> Debug -> Open Execute Anonymous Window 并粘贴以下行并单击 execute

Stack.printDetails();
Stack s= new Stack();
s.printDetails1();

https://help.salesforce.com/articleView?id=code_dev_console.htm&type=5